Payout Transactions are the individual transactions like customer payments, Resolve advances, forwarded payments, etc. that are rolled into a Payout for a sub-merchant or the partner. Each Payout is the sum of one or more transactions. Note that certain fields are only relevant to certain transaction types - e.g.: a Payout Transaction of type monthly_fee will have both customer_id and invoice_id set to null.
Filter Payout Transactions by the specified fields.
Filter semantics: filter[field][operator]=value.
Available filter operators:
eq- equal (=)ne- not equal (!=)gt- greater than (>)gte- greater than or equal (>=)lt- less than (<)lte- less than or equal (<=)
Filtering is allowed by the following fields:
merchant_id(eq) - filter by sub-merchant IDcustomer_id(eq,ne)created_at(eq,gt,lt,gte,lte)payout_id(eq,ne)invoice_id(eq,ne)
Example: filter[created_at][gte]=2021-01-01T00:00:00.000Z
Note: filter with the eq operator is equivalent to the following filter filter[field]=value
Sort Payout Transactions by the specified fields.
The sort order for each sort field is ascending unless it is prefixed with a minus, in which case it is descending.
Multiple sort fields supported by allowing comma-separated sort fields. Sort fields will be applied in the order specified.
Sorting is allowed by the following fields: id, created_at.
Example: sort=id,-created_at
- Mock serverhttps://docs.resolvepay.com/_mock/partners-api/openapi/payout-transactions
- Sandbox serverhttps://app-sandbox.resolvepay.com/api/payout-transactions
- bearerAuth
- basicAuth
curl -i -X GET \
'https://docs.resolvepay.com/_mock/partners-api/openapi/payout-transactions?limit=25&page=1&filter=string&sort=string' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'{ "limit": 25, "page": 1, "results": [ { … } ] }