Skip to main content
POST
/
users
/
create
Create user
curl --request POST \
  --url https://api.zochil.io/v3/monitoring/users/create \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "first_name": "<string>",
  "last_name": "<string>",
  "email": "[email protected]",
  "phone": "<string>",
  "password": "<string>",
  "address": "<string>"
}
'

Authorizations

access-token
string
header
required

Body

application/json
first_name
string
required

User's first name

last_name
string
required

User's last name

email
string<email>
required

User's email address

phone
string
required

User's phone number

password
string

User's password (optional)

address
string

User's address

Response

201

User created successfully