Payments

Filter payments

Returns payments using pagination and available filters.

post/payments

Request body

fromstring date-time
tostring date-time
pageinteger
pageSizeinteger

Example request

{
  "from": "2022-04-02T00:40:44",
  "to": "2022-04-02T00:40:44",
  "page": 1,
  "pageSize": 20
}

Response

Successful operation

pageinteger
pageSizeinteger
totalinteger

Example response

{
  "data": [
    {
      "date": "2022-04-03T01:13:50.182Z",
      "amount": -10000,
      "balance": 25000,
      "description": "Port 10000 subscription fee"
    }
  ],
  "page": 1,
  "pageSize": 20,
  "total": 7
}

Changes

No recorded changes to this endpoint across all 1 revision of this API.