POST
/
users
/
invite
curl --request POST \
  --url https://api.callab.ai/v1/users/invite \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "email": "jsmith@example.com",
  "password": "<string>",
  "fullname": "<string>",
  "permissions": [
    123
  ]
}'
{
  "status": "<string>",
  "message": "<string>",
  "data": "<string>"
}

Authorizations

Authorization
string
header
required

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

Body

application/json

User details

The body is of type object.

Response

200
application/json

User added successfully and invitation email sent.

The response is of type object.