A charge represents an agreement by the customer to accept credit terms for a transaction. It consists of a charge amount, term length (i.e. 30, 60, 90), and reference to the merchant's original order or purchase order numbers.
These endpoints are intended for merchants using the Checkout SDK. If you are not using the Checkout SDK flow, these endpoints are generally not needed.
Return a paginated list of charges.
Security
bearerAuth or basicAuth
- Mock serverhttps://docs.resolvepay.com/_mock/merchant-api/openapi/charges
- Sandbox serverhttps://app-sandbox.resolvepay.com/api/charges
- bearerAuth
- basicAuth
curl -i -X GET \
'https://docs.resolvepay.com/_mock/merchant-api/openapi/charges?limit=100&page=1&search=string&order=-created_at&starting_at=2019-08-24T14%3A15%3A22Z&ending_at=2019-08-24T14%3A15%3A22Z' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'Response
{ "count": 1, "limit": 25, "page": 1, "results": [ { … } ] }