Skip to main content
POST
/
sms
/
claim-number
Claim Phone Number
curl --request POST \
  --url https://api.zo.computer/sms/claim-number \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "phone_number": "<string>",
  "code": "<string>",
  "name": "<string>",
  "is_owner": false
}
'
{
  "success": true,
  "message": "<string>"
}

Authorizations

Authorization
string
header
required

Zo API key (zo_sk_...)

Body

application/json
phone_number
string
required

Phone number to claim

code
string
required

6-digit verification code

name
string | null

Name for additional senders

is_owner
boolean
default:false

If true, set as owner phone (replaces existing)

Response

Successful Response

success
boolean
required
message
string
required