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

account_id
string
required

The Account ID.

Response

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

true

data
object