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>"
}

Success Response

{
    "success": {
        "message": "Wallet Saved",
        "data": {
            "uuid": "<wallet_uuid>",
            "tag": "<your_new_tag>"
        }
    },
    "uuid": "597edb5b-9e6a-4cd2-a5c5-9cce5d0a2efb"
}

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