Update Wallet

You can update an existing wallet's tag

API Endpoint

POST /client/wallets/save


Request Headers:

Authorization: Bearer <access_token>

Content-Type: application/json Request Body:

{
    "wallet":"<existing_wallet_uuid>",
    "tag" : "<your_new_tag>"
}

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

Last updated