GET
/
wallets
/
{wallet_id}
/
transactions
curl --request GET \
  --url https://api.live.paisr.tech/{version}/wallets/{wallet_id}/transactions \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "transactions": [
      {
        "id": "tra_123456",
        "type": "debit",
        "method": "P2P",
        "status": "processing",
        "destination": {
          "name": "Jane Smith"
        },
        "quote": {
          "base": {
            "total": 100,
            "currency": "SRD"
          },
          "tax": {
            "collected": false,
            "country": "SR",
            "type": "VAT",
            "rate": 0,
            "total": 0
          },
          "fee": {
            "conversion": {
              "rate": 0,
              "total": 0
            },
            "interchange": {
              "rate": 0,
              "total": 0
            },
            "total": 0
          },
          "due": {
            "total": 100,
            "currency": "SRD"
          },
          "conversion": {
            "input": 100,
            "from": "SRD",
            "to": "SRD",
            "rate": 1,
            "total": 100
          },
          "output": {
            "total": 100,
            "currency": "SRD"
          }
        },
        "reference": "For services renderred",
        "created_at": "2023-11-07T05:31:56Z",
        "processed_at": "2023-11-07T05:31:56Z"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

wallet_id
string
required

The Wallet ID.

Query Parameters

balance_id
string

The ID of the balance you want to filter based on.

status
enum<string>

The status of the transactions you want to filter based on.

Available options:
pending,
processing,
settled,
requires-approval,
cancelled
type
enum<string>

The type of the transactions you want to filter based on.

Available options:
debit,
credit
method
enum<string>

The method of the transactions you want to filter based on.

Available options:
P2P,
A2A,
TopUp,
Payout,
EcomPay

Response

200
application/json
Successfully retrieved the list of wallet transactions.
success
boolean
Example:

true

data
object