POST
/
topper
/
kyc-sharing
/
identify-user
Identify user
curl --request POST \
  --url https://api.enterprise.sandbox.uphold.com/topper/kyc-sharing/identify-user \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "email": "[email protected]",
  "country": "GB"
}'
{
"user": {
"id": "cd21b26d-35d2-408a-9201-b8fdbef7a604",
"email": "[email protected]"
}
}

Authorizations

Authorization
string
header
required

OAuth 2.0 authentication

Body

application/json
email
string<email>
required

The email address.

Maximum length: 255
country
string
required

The country of residency.

Response

User identified.

user
object
required