Frontend API
Retrieve all phone numbers associated with the current user’s account, including verification status.
cURL
curl --request GET \ --url https://{deploymentHost}/me/phone-numbers \ --cookie __session=
{ "status": 200, "message": "", "data": [ { "id": "phone_123456789", "phone_number": "+1234567890", "verified": true, "primary": true, "created_at": "2024-01-01T00:00:00Z", "verified_at": "2024-01-01T00:30:00Z" }, { "id": "phone_987654321", "phone_number": "+1987654321", "verified": false, "primary": false, "created_at": "2024-01-10T12:00:00Z", "verified_at": null } ], "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": [] }
Session cookie authentication for production deployments. The session token is automatically set as an HTTP-only, secure cookie.
Phone numbers retrieved successfully
HTTP status code
Response message (empty for success)
Response data (can be any type)
Show child attributes
Array of error objects (empty for success)