POST
/
me
/
phone-numbers
/
{id}
/
make-primary
Set Phone Number as Primary
curl --request POST \
  --url https://{deploymentHost}/me/phone-numbers/{id}/make-primary
{
"status": 200,
"message": "",
"data": {
"primary_phone_updated": true,
"phone_number": {
"id": "phone_987654321",
"phone_number": "+1234567890",
"verified": true,
"primary": true,
"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": []
}

Authorizations

__session
string
cookie
required

Session cookie authentication for production deployments. The session token is automatically set as an HTTP-only, secure cookie.

Path Parameters

id
string
required

Phone number ID to set as primary

Response

200
application/json

Phone number set as primary successfully

The response is of type object.