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

Authorization
string
header
required

OAuth 2.0 authentication.

Body

application/json
input
object
required

Input of the KYC process.

output
object

Output of the KYC process.

Response

200
application/json
KYC phone process updated.
phone
object
required

The KYC phone object.