Get Wallet Info

Fetch an existing wallet by its UUID

API Endpoint

POST /client/wallets/view


Request Headers:

Authorization: Bearer <access_token>

Content-Type: application/json Request Body:

{
    "wallet":"<existing_wallet_uuid>"
}

curl 'https://apis.xpay.stream/client/wallets/view' \
  -H 'Authorization: Bearer <access_token>'         \
  -H 'Content-Type: application/json'               \
  --data-raw '{"wallet":"<existin_wallet_uuid>"}'             

Last updated