GET
/
transfer
/
list
curl --request GET \
  --url https://api.pushcash.com/transfer/list \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "transfer_xle830ef8djeoiu",
      "amount": 700284,
      "currency": "USD",
      "direction": "credit",
      "created_at": "2023-05-24T20:15:18.158Z",
      "date": "2023-05-24",
      "transactions": [
        {
          "id": "txn_230vjroij4985uefjoiu9",
          "amount": -700284,
          "currency": "USD",
          "created_at": "2023-05-24T20:15:18.158Z",
          "date": "2023-05-24",
          "batch": null,
          "account_id": "account_WsELzpJOvU6fNafvzWbF6K",
          "type": "transfer",
          "source_id": "transfer_xle830ef8djeoiu",
          "status": "settled"
        }
      ],
      "account": {
        "id": "account_WsELzpJOvU6fNafvzWbF6K",
        "type": "settlement",
        "name": "Settlement Account",
        "created_at": "2023-05-24T20:15:18.158Z"
      }
    }
  ],
  "next_cursor": "vjl8vk3l4o8dhsjlzh=="
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

created_at.after
string

Return transfers created after this ISO 8601 timestamp.

created_at.before
string

Return transfers created before this ISO 8601 timestamp.

cursor
string

The cursor for the next page of results to fetch

Example:

"vjl8vk3l4o8dhsjlzh=="

date.after
string

Return transfers made on or after the specified date

date.before
string

Return transfers made on or before the specified date

Response

200
application/json
Successful operation
data
object[]
required
next_cursor
string | null
required

Use cursor for paginating list endpoints in conjunction with the cursor request parameter.

In a response, the value is null if there are no more results to fetch.

Example:

"vjl8vk3l4o8dhsjlzh=="