Core API
- Concepts
- Authentication
- Countries
- Users
- KYC
- Introduction
- GETGet overview
- PATCHUpdate email
- PATCHUpdate phone
- PATCHUpdate profile
- PATCHUpdate address
- PATCHUpdate identity
- PATCHUpdate proof of address
- PATCHUpdate customer due diligence
- PATCHUpdate enhanced due diligence
- PATCHUpdate crypto risk assessment
- PATCHUpdate self-categorization statement
- PATCHUpdate tax details
- Webhooks
- Capabilities
- Terms of Service
- Files
- Assets
- Accounts
- External Accounts
- Transactions
- Webhooks
Widgets API
- Payment
Update phone
Update the phone process for a user.
PATCH
/
core
/
kyc
/
processes
/
phone
curl --request PATCH \
--url https://api.enterprise.sandbox.uphold.com/core/kyc/processes/phone \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"input": {
"phone": "+4407400123456",
"country": "GB"
},
"output": {
"verifiedAt": "2020-01-01T00:00:00Z"
}
}'
{
"phone": {
"status": "ok",
"input": {
"phone": "+4407400123456",
"country": "GB"
},
"output": {
"verifiedAt": "2020-01-01T00:00:00Z"
}
}
}
Authorizations
OAuth 2.0 authentication.
Body
application/json
Response
200
application/json
KYC phone process updated.
The KYC phone object.
Status of the KYC process.
Available options:
ok
, failed
, running
, pending
, exempt
curl --request PATCH \
--url https://api.enterprise.sandbox.uphold.com/core/kyc/processes/phone \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"input": {
"phone": "+4407400123456",
"country": "GB"
},
"output": {
"verifiedAt": "2020-01-01T00:00:00Z"
}
}'
{
"phone": {
"status": "ok",
"input": {
"phone": "+4407400123456",
"country": "GB"
},
"output": {
"verifiedAt": "2020-01-01T00:00:00Z"
}
}
}