Skip to main content
PATCH
/
wallets-status
Change wallet status
curl --request PATCH \
  --url https://tag.dev.alfa-bot.com/api/dev/v1/wallets-status \
  --header 'Content-Type: application/json' \
  --header 'token: <api-key>' \
  --data '
{
  "address": "TQv5pEXAMPLE9xA",
  "status": "active"
}
'
{
  "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"

status
enum<string>
required
Available options:
active,
blocked
Example:

"active"

Response

OK - wallet status changed successfully

code
string
required
Example:

"200"

data
object
required