GET
/
wallets
/
{wallet_id}
/
accounts
curl --request GET \
  --url https://api.live.paisr.tech/{version}/wallets/{wallet_id}/accounts \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "accounts": [
      {
        "id": "cwa_123456",
        "account_holder": "John Doe",
        "account_number": "123456789",
        "account_type": "checking",
        "currency": "SRD",
        "verified": true,
        "bank": {
          "name": "De Surinaamsche Bank",
          "swift_code": "SURBSRPA"
        },
        "created_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.

Response

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

true

data
object