GET
/
wallets
/
{wallet_id}
/
pin
curl --request GET \
  --url https://api.live.paisr.tech/{version}/wallets/{wallet_id}/pin \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "secret": "5719"
  }
}

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 wallet PIN.
success
boolean
Example:

true

data
object