Skip to main content
POST
/
users
Create User
curl --request POST \
  --url https://sandbox.sturdytechnologies.com/v3/users \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "[email protected]",
  "firstname": "John",
  "lastname": "Doe",
  "telephone": "+1234567890",
  "user_id": "<string>"
}
'
{
  "data": "null",
  "message": "User created successfully",
  "success": true
}

Authorizations

Authorization
string
header
required

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

Body

application/json

Create User payload

email
string
firstname
string
Example:

"John"

lastname
string
Example:

"Doe"

telephone
string
Example:

"+1234567890"

user_id
string

Response

Created

data
string
Example:

null

message
string
Example:

"User created successfully"

success
boolean
Example:

true