GET
/
wallets
/
{wallet_id}
/
transactions
/
{transaction_id}
curl --request GET \
  --url https://api.live.paisr.tech/{version}/wallets/{wallet_id}/transactions/{transaction_id} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "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.

transaction_id
string
required

The Transaction ID.

Response

200
application/json
Successfully retrieved transaction details.
success
boolean
Example:

true

data
object