Core API
- Concepts
- Authentication
- Countries
- Users
- KYC
- Capabilities
- Terms of Service
- Files
- Assets
- Accounts
- External Accounts
- Transactions
- Webhooks
Widgets API
- Payment
Get user
Retrieve an existing user.
GET
/
core
/
users
/
me
curl --request GET \
--url https://api.enterprise.sandbox.uphold.com/core/users/me \
--header 'Authorization: Bearer <token>'
{
"user": {
"id": "cd21b26d-35d2-408a-9201-b8fdbef7a604",
"email": "[email protected]",
"fullName": "John Doe",
"birthdate": "1980-01-01",
"citizenshipCountry": "GB",
"address": {
"country": "GB",
"subdivision": "GB-MAN",
"city": "Manchester",
"line1": "1 High Street",
"line2": "Northern Quarter",
"postalCode": "M4 1AA"
},
"createdAt": "2024-03-13T20:20:39+00:00",
"updatedAt": "2024-03-13T20:20:39+00:00"
}
}
Authorizations
OAuth 2.0 authentication.
Response
200 - application/json
User retrieved.
The id of the user.
The email address.
The citizenship country.
The address information.
The country of the address.
The subdivision of the address.
The city of the address.
The first line of the address.
The second line of the address.
The postal code of the address.
The time at which the user was created.
The time at which the user was last updated.
The full legal name.
The date of birth.
curl --request GET \
--url https://api.enterprise.sandbox.uphold.com/core/users/me \
--header 'Authorization: Bearer <token>'
{
"user": {
"id": "cd21b26d-35d2-408a-9201-b8fdbef7a604",
"email": "[email protected]",
"fullName": "John Doe",
"birthdate": "1980-01-01",
"citizenshipCountry": "GB",
"address": {
"country": "GB",
"subdivision": "GB-MAN",
"city": "Manchester",
"line1": "1 High Street",
"line2": "Northern Quarter",
"postalCode": "M4 1AA"
},
"createdAt": "2024-03-13T20:20:39+00:00",
"updatedAt": "2024-03-13T20:20:39+00:00"
}
}