Skip to main content
POST
/
v1
/
ui
/
admin
/
users
Create new user (Admin only)
curl --request POST \
  --url https://api.example.com/v1/ui/admin/users \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "email": "jsmith@example.com",
  "type": "provider",
  "providerId": "<string>",
  "providerRole": "owner"
}
'
{}

Body

application/json
name
string
required
Minimum string length: 1
email
string<email>
required
type
enum<string>
required
Available options:
provider,
admin,
super_admin
providerId
string
providerRole
enum<string>
Available options:
owner,
admin,
member

Response

201 - application/json

User created successfully

The response is of type object.