GET
/
transaction
/
list
List transactions
curl --request GET \
  --url https://api.pushcash.com/transaction/list \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "txn_CpiSd1bptYB5P55ysTDHg",
      "amount": 11000,
      "direction": "credit",
      "currency": "USD",
      "created_at": "2023-05-24T20:15:18.158Z",
      "date": "2023-05-24",
      "batch": "39408",
      "account_id": "account_WsELzpJOvU6fNafvzWbF6K",
      "type": "intent",
      "source_id": "intent_sandbox_dMggQ93ZYH6DH9LBhVeijE"
    }
  ],
  "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<date-time>

Return transactions created after this ISO 8601 timestamp.

created_at.before
string<date-time>

Return transactions created before this ISO 8601 timestamp.

cursor
string

The cursor for the next page of results to fetch

Example:

"vjl8vk3l4o8dhsjlzh=="

account_id
string

Return transactions associated with the specified account

Example:

"account_28CJjV7P4Go5PNJvfzghiD"

date.after
string<date>

Return transactions recorded on or after the specified date

date.before
string<date>

Return transactions recorded on or before the specified date

batch
string

Return transactions associated with the specified batch

type
enum<string>

Return transactions of the specified type

Available options:
intent,
transfer,
unreconciled

Response

200
application/json

Successful operation

The response is of type object.