- Users
- Create/Connect a new User
Users
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"
}
{
"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"
}