1. Users
  2. Create/Connect a new User
POST

/api/api/users/create

client_id*
api_key*
curl --request POST \
     --url https://api.senddotssandbox.com/api/api/users/create \
     --header 'Authorization: Basic AUTH_VALUE' \
     --header 'Content-Type: application/json' \
     --data '{
 "email": "string",
 "country_code": "string",
 "phone_number": "string",
 "first_name": "string",
 "last_name": "string"
}'
{
  "email": "user@example.com",
  "country_code": "string",
  "phone_number": "string",
  "first_name": "string",
  "last_name": "string",
  "username": "string"
}
{
  "success": true,
  "action": "verify",
  "verification_id": "97984720-f763-4d02-87fa-477ea2a2587c"
}

Body

emailRequired
string
country_codeRequired
string
phone_numberRequired
string
first_nameRequired
string
last_nameRequired
string
username
string

Response

success
boolean
action
string
verification_id
string