Skip to main content
POST
/
organization
/
{organizationId}
/
users
cURL
curl --request POST \
  --url http://127.0.0.1:3000/api/organization/{organizationId}/users \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
[
  {
    "email": "<string>",
    "departmentId": "<string>",
    "id": "<string>",
    "name": "<string>",
    "phone": "<string>"
  }
]
'
[
  {
    "id": "<string>",
    "email": "<string>",
    "name": "<string>",
    "phone": "<string>"
  }
]

Authorizations

Authorization
string
header
required

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

Path Parameters

organizationId
string
required

Body

application/json
email
string
required
departmentId
string
id
string
name
string
phone
string

Response

201 - application/json

Create users successfully

id
string
required
email
string
required
name
string
required
phone
string
Last modified on December 10, 2025