Skip to main content
PUT
/
v0
/
user
/
me
/
phone
Update Phone
curl --request PUT \
  --url https://api.example.com/v0/user/me/phone \
  --header 'Content-Type: application/json' \
  --data '
{
  "phone_number": "+14155551234",
  "resend": false
}
'
{
  "_links": {
    "kyc": {
      "description": "Submit KYC information",
      "href": "/v0/user/me/kyc",
      "method": "PUT"
    },
    "self": {
      "href": "/v0/user/me",
      "method": "GET"
    },
    "wallets": {
      "href": "/v0/wallets",
      "method": "GET"
    }
  }
}

Headers

x-juno-jwt
string | null

Body

application/json
phone_number
string | null

Phone number in E.164 international format. Include country code with + prefix. Example: +14155551234 for US numbers.

Example:

"+14155551234"

resend
boolean
default:false

Set to true to resend verification code to the pending phone number. Cannot be used with phone_number.

Response

Verification code sent successfully

HAL-style hypermedia links for navigation.

phone_number
string
required

Phone number being verified in E.164 format.

status
string
required

Verification status: 'code_sent' or 'verified'.

message
string
required

Human-readable status message.

expires_in_seconds
integer | null

Seconds until the verification code expires. Null after successful verification.