Get payment links by user
Last updated
Last updated
The method allows you to get a list of payment links for a specific user
Public API-key
Signing the request body with a private API-key
Request content type
application/json
The body of the request to get the list of payment links associated with the client
Client ID
merchant_client_unique_id
Client mail
client-email@example.com
Merchant ID in the system
86f1f78d-77c6-4bb1-b67c-8389218ce646
POST /api-gateway/recurrents/get-billing-links-by-subscriber HTTP/1.1
Host: app.apollopayment.io
Content-Type: application/json
Accept: */*
Content-Length: 133
{
"clientId": "merchant_client_unique_id",
"clientEmail": "client-email@example.com",
"merchantId": "86f1f78d-77c6-4bb1-b67c-8389218ce646"
}
{
"success": true,
"response": [
{
"id": "9b0838e7-54ca-4da7-9634-d497a47f9381",
"merchantId": "86f1f78d-77c6-4bb1-b67c-8389218ce646",
"clientId": "merchant_client_unique_id",
"clientName": "John Doe",
"clientEmail": "client-email@example.com",
"webhookUrl": "https://merchant.domain/webhooks/subscription",
"returnUrl": "https://merchant.domain/",
"address": "0x00000005707Bf50EfA35a2db020eDe9Ac0780b9f",
"currency": "USDT",
"network": "ethereum",
"status": "PENDING",
"createdAt": "2025-06-09T13:18:29.433Z",
"updatedAt": "2025-06-09T13:18:29.433Z"
}
]
}