GET
/
wallets
/
{wallet_id}
/
links
curl --request GET \
  --url https://api.live.paisr.tech/{version}/wallets/{wallet_id}/links \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "links": [
      {
        "id": "wpr_123456",
        "description": "Plant a tree initiative",
        "currency": "SRD",
        "amount": 25,
        "balance": {
          "id": "bca_123456",
          "title": "SRD Balance"
        },
        "created_at": "2023-11-07T05:31:56Z",
        "expires_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 payment links.
success
boolean
Example:

true

data
object