cURL
curl --request GET \ --url https://demo.api.harmony.compago.com/api/payment-method/{id}/payment \ --header 'x-api-key: <api-key>'
{ "count": 10, "page": 1, "pageSize": 100, "items": [ { "id": "11111111-2222-3333-4444-555555555555", "status": "CONFIRMED", "amount": 123, "currency": "MXN", "createdAt": "2023-11-07T05:31:56Z" } ] }
The unique identifier of the payment method
Page number for pagination
x >= 1
Number of items per page (max 500)
1 <= x <= 500
Filter by payment status
NOT_INITIALIZED
PENDING
CONFIRMED
CANCELLED
REFUNDED
Paginated list of payments
Paginated list of payments for a payment method
Total number of payments matching the filter criteria
10
Current page number
1
Number of items per page
100
Array of payment objects
Show child attributes