get https://{BASE_URL_PROD}/v4/private/me
Review your account information.
This is a private
route, so the api-key
parameter should be sent in the header.
Data dictionary
This endpoint does not take any parameters.
Exemplary request
Please use this endpoint: {{baseURL}}/v4/private/me
Response structure
You will receive a JSON in the response with data
object, structured like this example:
HTTP/1.1 200 OK
Content-Type: application/json; charset=utf-8
{
"id": "93adcb31-a266-4c6e-98e8-5fc574cd230d", // Unique identifier of the user
"fullName": "John Smith", // Name of the user
"language": "en", // Language preferences
"merchantId": "16324228-5ytc-5abc-4sra-c90259b21d4e", // Unique merchant identifier
"referenceCurrency": "UAH", // Reference currency for UI
"username": "john-smith-user", // Username of the user
"verificationStatus": "accepted", // User verification state
"confirmationSetting": { // Indicates if a confirmation is sent in case of an action
"withdraw": false // Confirmation of the withdrawal action (off in this case)
},
"motificationSetting": { // Indicates if a notification is sent in case of an event
"advertisement": false, // Inform about new promos (off in this case)
"deposit": false, // Inform about new deposits (off in this case)
"login": false, // Inform about new login detection (off in this case)
"order": false, // Inform about new order creation (off in this case)
"withdraw": false // Inform about successful withdrawal (off in this case)
}
}
Errors
As there are no parameters for this endpoint, you may encounter only general errors while using it.