Skip to main content
POST
/
api
/
auth
/
register
Register user
curl --request POST \
  --url https://your-instance.example.com/api/auth/register \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "jsmith@example.com",
  "password": "<string>",
  "fullName": "<string>",
  "organizationId": "<string>",
  "accessRole": "<string>",
  "phoneNumber": "<string>",
  "sinchPhoneNumber": "<string>",
  "designation": "<string>",
  "departmentId": "<string>"
}
'
{}

Body

application/json
email
string<email>
required
password
string
required
fullName
string
organizationId
string
accessRole
string
phoneNumber
string
sinchPhoneNumber
string
designation
string
departmentId
string

Response

User registered

Generic response envelope. Endpoint-specific fields are intentionally open.