PUT
/
wallets
/
{wallet_id}
/
balances
/
{balance_id}
curl --request PUT \
  --url https://api.live.paisr.tech/{version}/wallets/{wallet_id}/balances/{balance_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "title": "SRD Revenue"
}'
{
  "success": true,
  "message": "<string>"
}

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.

balance_id
string
required

The Balance ID.

Body

application/json
The details required to update the wallet balance.
title
string
required

Short title or name for the balance.

Example:

"SRD Revenue"

Response

200
application/json
Successfully updated wallet balance.
success
boolean

Indicates if the request was successful.

message
string

A descriptive message regarding the result.