Plexy
Pay APIGate APIDashboard
Pay APIGate APIDashboard
  1. Deposits
  • Overview
  • Products
    • List product types
      GET
    • List product categories
      GET
    • List products
      GET
    • Get product
      GET
  • Orders
    • List orders
      GET
    • Create order
      POST
    • Get order by ID
      GET
  • Balances
    • Get balance
      GET
  • Deposits
    • List deposit history
      GET
  • System
    • API health
      GET
Pay APIGate APIDashboard
Pay APIGate APIDashboard
  1. Deposits

List deposit history

GET
/agent/{agent_id}/deposits
Returns subagent deposit records.

Request

Authorization
API Key
Add parameter in header
Authorization
Example:
Authorization: ********************
or
Path Params

Query Params

Responses

🟢200
application/json
OK
Body

🟠401
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/agent/a12d5be1-3456-4c18-b111-33cdd0a1cc99/deposits?page&pageSize&status' \
--header 'Authorization: <api-key>'
Response Response Example
200 - Deposit list
{
    "items": [
        {
            "id": 1201,
            "currency_code": "USD",
            "amount": "250.00",
            "method": "bank_wire",
            "status": "posted",
            "external_ref": "WIRE-2024-10-17",
            "created_at": "2024-10-17T09:00:00Z",
            "posted_at": "2024-10-17T10:15:00Z"
        },
        {
            "id": 1202,
            "currency_code": "USD",
            "amount": "100.00",
            "method": "manual",
            "status": "pending",
            "external_ref": null,
            "created_at": "2024-11-15T08:30:00Z",
            "posted_at": null
        }
    ],
    "page": 1,
    "pageSize": 50,
    "total": 2
}
Modified at 2025-12-12 12:02:13
Previous
Get balance
Next
API health
Built with