cURL
curl --request GET \ --url https://sandbox.api.acountpay.com/v1/partner/payments \ --header 'X-Partner-Client-Id: <api-key>' \ --header 'X-Partner-Client-Secret: <api-key>'
{ "payments": [ { "id": 456, "referenceNumber": "ORDER-123", "amount": 149.5, "currency": "DKK", "status": "paid", "merchantClientId": "a1b2c3d4-e5f6-...", "merchantName": "Restaurant XYZ ApS", "description": "Table 5 - 2 items", "createdAt": "2023-11-07T05:31:56Z" } ], "total": 100, "page": 1, "limit": 20 }
Returns a paginated list of payments across all partner merchants. Optionally filter by merchant or status.
Your partner client ID
Your partner client secret
Filter by merchant client ID
Filter by payment status
Page number
Items per page
Paginated payment list
Show child attributes
100
1
20
Was this page helpful?