Contact Verification
Confirm a customer's phone verification code
Submit the one-time code the customer received via SMS to mark their phone as VERIFIED. On success, contactVerification.phone becomes VERIFIED.
Both email and phone must be VERIFIED before the customer can begin KYC.
In sandbox, the code is always 123456.
post/customers/{customerId}/verify-phone/confirm
Request body
Example request
{
"code": "123456"
}Response
Phone verified.
Example response
{
"id": "Customer:019542f5-b3e7-1d02-0000-000000000001",
"platformCustomerId": "9f84e0c2a72c4fa",
"customerType": "INDIVIDUAL",
"region": "US",
"currencies": [
"USD",
"USDC"
],
"email": "john.doe@example.com",
"phoneNumber": "+14155551234",
"umaAddress": "$john.doe@uma.domain.com",
"createdAt": "2025-07-21T17:32:28Z",
"updatedAt": "2025-07-21T17:32:28Z",
"contactVerification": {
"email": "VERIFIED",
"phone": "VERIFIED"
}
}