Authorizations
Path Parameters
Body
application/json
Verify a phone number using the OTP code sent via SMS. The code expires after 5 minutes.
curl --request POST \
--url https://{deploymentHost}/me/phone-numbers/{id}/attempt-verification \
--header 'Content-Type: application/json' \
--data '{
"code": "123456"
}'{
"status": 200,
"message": "",
"data": {
"verified": true,
"phone_number": {
"id": "phone_987654321",
"phone_number": "+1234567890",
"verified": true,
"primary": false,
"created_at": "2024-01-10T12:00:00Z",
"verified_at": "2024-01-10T12:05:00Z"
}
},
"session": {
"signin_attempts": [],
"signins": [
{
"id": "signin_987654321",
"user_id": "user_456789123",
"created_at": "2024-01-01T12:00:00Z"
}
],
"signup_attempts": [],
"active_signin": {
"id": "signin_987654321",
"user_id": "user_456789123",
"created_at": "2024-01-01T12:00:00Z"
}
},
"errors": []
}curl --request POST \
--url https://{deploymentHost}/me/phone-numbers/{id}/attempt-verification \
--header 'Content-Type: application/json' \
--data '{
"code": "123456"
}'{
"status": 200,
"message": "",
"data": {
"verified": true,
"phone_number": {
"id": "phone_987654321",
"phone_number": "+1234567890",
"verified": true,
"primary": false,
"created_at": "2024-01-10T12:00:00Z",
"verified_at": "2024-01-10T12:05:00Z"
}
},
"session": {
"signin_attempts": [],
"signins": [
{
"id": "signin_987654321",
"user_id": "user_456789123",
"created_at": "2024-01-01T12:00:00Z"
}
],
"signup_attempts": [],
"active_signin": {
"id": "signin_987654321",
"user_id": "user_456789123",
"created_at": "2024-01-01T12:00:00Z"
}
},
"errors": []
}