Get user
The method allows you to get user data by his id or clientId
Header parameters
x-api-public-keystringOptional
Public API-key
x-api-signaturestringOptional
Signing the request body with a private API-key
Content-typestringOptionalExample: 
Request content type
application/jsonBody
User data request body
idstringOptionalExample: 
User ID in the system. Required, if 'clientId' was not provided
ac4c223a-d063-446b-b514-e7aaee15956dclientIdstringOptionalExample: 
User ID in the merchant system. Required, if 'id' was not provided
user12345Responses
200Success
application/json
post
/api-gateway/personal-addresses/get-userPOST /api-gateway/personal-addresses/get-user HTTP/1.1
Host: app.apollopayment.io
Content-Type: application/json
Accept: */*
Content-Length: 68
{
  "id": "ac4c223a-d063-446b-b514-e7aaee15956d",
  "clientId": "user12345"
}200Success
{
  "success": true,
  "response": {
    "id": "ac4c223a-d063-446b-b514-e7aaee15956d",
    "clientId": "user12345",
    "clientEmail": "[email protected]",
    "clientName": "John Doe",
    "depositWebhookUrl": "https://merchant.domain/webhooks/user12345",
    "createdAt": "2025-06-09T13:18:29.437Z",
    "updatedAt": "2025-06-09T13:18:29.437Z",
    "addresses": {
      "id": "68436be9-b90b-49c2-ae81-8beaf78fdc1f",
      "userId": "308f853c-47f9-4acf-988a-f5f782e4e740",
      "currency": "USDT",
      "network": "ethereum",
      "address": "0x515b72ed8a97f42c568d6a143232775018f133c8",
      "tag": null,
      "balance": "1234.1234",
      "isActive": true
    }
  }
}Last updated