Get user
Last updated
Last updated
The method allows you to get user data by his id
or clientId
Public API-key
Signing the request body with a private API-key
Request content type
application/json
User data request body
User ID in the system. Required, if 'clientId' was not provided
ac4c223a-d063-446b-b514-e7aaee15956d
User ID in the merchant system. Required, if 'id' was not provided
user12345
POST /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"
}
{
"success": true,
"response": {
"id": "ac4c223a-d063-446b-b514-e7aaee15956d",
"clientId": "user12345",
"clientEmail": "user@domain.com",
"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
}
}
}