API Reference
//
List all payments
Security
JWT
The currency in which the payment is made. The currency code is in ISO 4217 format. For example, USD.
Example:currency=USD
ISO-8601 timestamp in UTC to filter resources created before this time. Use this to avoid Page drift issue. See Pagination parameters for more details.
Example:before=2025-02-18T12:03:44Z
ISO-8601 timestamp in UTC to filter resources created after this time. Use this to avoid Page drift issue. See Pagination parameters for more details.
Example:after=2025-01-18T12:03:44Z
GET
curl -i -X GET \
'https://api.glomopay.com/api/v1/payment?customer_id=cust_E602sMzgjpDC&status=success&compliance_status=approved&payin_id=payin_E602dMzgjpDC&payment_type=add_funds&subscription_id=sub_68877570b5zeE¤cy=USD&request_id=unique_request_id_123&before=2025-02-18T12%3A03%3A44Z&after=2025-01-18T12%3A03%3A44Z&per_page=20&page=1' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'Response
- Bank Transfer Details
- Pay Via Bank Details
- Card Details
{ "data": [ { … } ], "page_meta": { "current": 2, "previous": 1, "next": 3, "per_page": 20, "pages": 10, "count": 200 } }