Skip to main content
PUT
/
wallets
Update wallet
curl --request PUT \
  --url https://tag.dev.alfa-bot.com/api/dev/v1/wallets \
  --header 'Content-Type: application/json' \
  --header 'token: <api-key>' \
  --data '
{
  "address": "TQv5pEXAMPLE9xA",
  "name": "Updated wallet name"
}
'
{
  "code": "200",
  "data": {
    "result": "success"
  }
}

Authorizations

token
string
header
required

Pass your API token in the token request header.

Body

application/json
address
string
required

Wallet address

Example:

"TQv5pEXAMPLE9xA"

name
string
required

New wallet name

Example:

"Updated wallet name"

Response

OK - wallet was updated successfully

code
string
required
Example:

"200"

data
object
required