API URL

POST /api/v1/address/update

Request

Request Parameters

NameTypeRequiredDescription
addressstringYTarget address to update
callback_urlstringNcallback notify url 【At least one of callback_url, alias, or status must be provided】
aliasstringNDisplay Name 【At least one of callback_url, alias, or status must be provided】
statusstringNstatus【0-enable 1-disable】【At least one of callback_url, alias, or status must be provided】
pidinteger(int64)YProject id
noncestringY6 random string
timestampinteger(int64)YTimestamp
signstringYSignature
Request Example
{
    "address":"TAxmdDrQGzW37nm1xH4NXXfff2tUTaTecR",
    "callback_url": "http://xxx.com/address/callback",
    "alias": "lily address",
    "status": "1",
    "pid": 1382528827416576,
    "nonce": "hwlkk6",
    "timestamp": 1688004243314,
    "sign": "d6eef2de79e39f434a38efb910213ba6"
}

Response

Response Result

NameTypeDescription
codestringReturn code
msgstringReturn message
dataobjectReturn data
Response Example
{
    "code": "00000",
    "msg": "ok",
    "data": null
}