PATCH
/
core
/
kyc
/
processes
/
email
curl --request PATCH \
  --url https://api.enterprise.sandbox.uphold.com/core/kyc/processes/email \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "input": {
    "email": "[email protected]"
  },
  "output": {
    "verifiedAt": "2020-01-01T00:00:00Z"
  }
}'
{
"email": {
"status": "ok",
"input": {
"email": "[email protected]"
},
"output": {
"verifiedAt": "2020-01-01T00:00:00Z"
}
}
}

Authorizations

Authorization
string
header
required

OAuth 2.0 authentication.

Body

application/json

Response

200
application/json

KYC email process updated.

The response is of type object.