Creating a payment
Last updated
Last updated
The method allows you to create a payment with an arbitrary amount in the coin in which the address was connected
Public API-key
Signing the request body with a private API-key
Request content type
application/json
The body of the request to create a payment for the payment link
Merchant ID
86f1f78d-77c6-4bb1-b67c-8389218ce646
Payment link ID
9b0838e7-54ca-4da7-9634-d497a47f9381
URL for notification of payment status change
https://merchant.domain/webhooks/payment
Payment amount in the currency in which the payment link was created
10
POST /api-gateway/recurrents/make-payment HTTP/1.1
Host: app.apollopayment.io
Content-Type: application/json
Accept: */*
Content-Length: 178
{
"merchantId": "86f1f78d-77c6-4bb1-b67c-8389218ce646",
"billingLinkId": "9b0838e7-54ca-4da7-9634-d497a47f9381",
"webhookUrl": "https://merchant.domain/webhooks/payment",
"amount": "10"
}
{
"success": true,
"response": {
"id": "d35c8663-28f2-4867-b4b0-d57a2da5eb47",
"merchantId": "86f1f78d-77c6-4bb1-b67c-8389218ce646",
"billingLinkId": "9b0838e7-54ca-4da7-9634-d497a47f9381",
"webhookUrl": "https://merchant.domain/webhooks/payment",
"amount": "10",
"tx": null,
"status": "INIT",
"createdAt": "2025-06-09T13:18:29.436Z",
"updatedAt": "2025-06-09T13:18:29.436Z"
}
}