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 email
Update the email process for a user.
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
OAuth 2.0 authentication.
Body
application/json
Response
200
application/json
KYC email process updated.
The response is of type object
.
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"
}
}
}
Assistant
Responses are generated using AI and may contain mistakes.