Set phone number
PUT
/users/me/phone
Sets the caller's phone number (stored only; no SMS verification).
Authorizations
BearerAuth
Authentication is handled automatically via httpOnly session cookies after signing in at /cognito/signin or via Google SSO at /cognito/oauth/google. For Swagger UI testing, paste a JWT token from the /cognito/signin response.
Type
HTTP (bearer)
Request Body
application/json
JSON
{
"phone": "string"
}
Responses
Phone number saved
application/json
JSON
{
"success": true,
"phone": "string",
"message": "string"
}