Deposits
Operations related to deposits
All endpoints require a JWT Bearer token in the Authorization header; most also require an API key in the X-API-KEY header.
GET /v1/deposits
Get a list of deposits with pagination
Parameters
Name | In | Type | Required | Description |
|---|---|---|---|---|
| query |
| Yes | Maximum number of records to return. Starts from 1 to 1000. |
| query |
| Yes | Page number to retrieve, starting from 0. |
| query |
| No | Include transaction data in the response. When true, enriches the dispute with transaction data where dispute.paymentPspReference === transaction.transactionId. |
| query |
| No | Choose specific fields to include in the response (comma-separated). If provided, excludeFields will be ignored. |
| query |
| No | Exclude specific fields from the response (comma-separated). |
| query |
| No | A JSON object representing the filter criteria in MongoDB Query Language (MQL) format. |
| query |
| No | A JSON object representing the sort criteria in MongoDB Query Language (MQL) format. |
| query |
| No | Include related data in query results using a JSON object. |
Responses
Status | Description |
|---|---|
| Successfully retrieved a paginated list of deposits. |
GET /v1/deposits/{id}
Get a specific deposit by ID
Parameters
Name | In | Type | Required | Description |
|---|---|---|---|---|
| path |
| Yes | The depositId field |
| query |
| No | Include transaction data in the response. When true, enriches the dispute with transaction data where dispute.paymentPspReference === transaction.transactionId. |
| query |
| No | Choose specific fields to include in the response (comma-separated). If provided, excludeFields will be ignored. |
| query |
| No | Exclude specific fields from the response (comma-separated). |
| query |
| No | Include related data in query results using a JSON object. |
Responses
Status | Description |
|---|---|
| Deposit details retrieved successfully |
Examples
GET /v1/deposits
First page of deposits, newest payout first:
Response 200 (illustrative):
GET /v1/deposits/{id}
Response 200: the deposit object, enriched with transaction data.