PUT
/
wallets
/
{wallet_id}
curl --request PUT \
  --url https://api.live.paisr.tech/{version}/wallets/{wallet_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "nickname": "Acme Finance",
  "tag": "acmefinance",
  "public": true
}'
{
  "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.

Body

application/json
The details required to update the wallet profile.
nickname
string

Short nickname.

Example:

"Acme Finance"

tag
string

Unique tag used for transfer purposes.

Example:

"acmefinance"

public
boolean

Flag indicating if wallet is discoverable by other users.

Example:

true

Response

200
application/json
Successfully updated wallet profile.
success
boolean

Indicates if the request was successful.

message
string

A descriptive message regarding the result.