Skip to main content
POST
/
admin
/
users
/
invite
Invite a new user
curl --request POST \
  --url https://nimbussuite.com/api/v1/admin/users/invite \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "[email protected]"
}
'
{
  "message": "<string>",
  "data": {}
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
email
string<email>
required

Response

Invitation sent successfully

message
string
data
object