PATCH
/
core
/
kyc
/
processes
/
profile
curl --request PATCH \
  --url https://api.enterprise.sandbox.uphold.com/core/kyc/processes/profile \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "input": {
    "fullName": "John Doe",
    "birthdate": "1980-01-01",
    "citizenshipCountry": "GB"
  }
}'
{
  "profile": {
    "status": "ok",
    "input": {
      "fullName": "John Doe",
      "birthdate": "1980-01-01",
      "citizenshipCountry": "GB"
    }
  }
}

Authorizations

Authorization
string
header
required

OAuth 2.0 authentication.

Body

application/json
input
object
required

Input of the KYC process.

Response

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

The KYC profile object.