More resources
Replace the address under the wallet

Replace the address under the wallet#

This interface allows you to replace the bound address under the specified wallet.

Request URL#

POST https://www.okx.com/api/v5/waas/wallet/sync-address

Request parameters#

ParameterTypeRequiredDescription
walletIdStringYesUnique identifier of the wallet
addressesArrayYesReplace Array of addresses
>chainIdStringYesUnique identifier of the chain
>addressStringYesRelace single Address

Response parameters#

None

Request example#

shell
curl --location --request POST 'https://www.okx.com/api/v5/waas/wallet/sync-address' \
--header 'Content-Type: application/json' \
--header 'OK-ACCESS-PROJECT: 86af********d1bc' \
--header 'OK-ACCESS-KEY: 37c541a1-****-****-****-10fe7a038418' \
--header 'OK-ACCESS-SIGN: leaV********3uw=' \
--header 'OK-ACCESS-PASSPHRASE: 1****6' \
--header 'OK-ACCESS-TIMESTAMP: 2023-10-18T12:21:41.274Z' \
--data-raw '{
  "addresses": [
    {
        "chainId": "1",
        "address": "0x238193be9e80e68eace3588b45d8cf4a7eae0fa3"
    },
    {
        "chainId": "56",
        "address": "0x238193be9e80e68eace3588b45d8cf4a7eae0fa3"
    },
    {
        "chainId": "66",
        "address": "0x238193be9e80e68eace3588b45d8cf4a7eae0fa3"
    },
    {
        "chainId": "137",
        "address": "0x238193be9e80e68eace3588b45d8cf4a7eae0fa3"
    }
  ],
  "walletId": "13886e05-1265-4b79-8ac3-b7ab46211001"
}'

Response example#

200
{
  "code": "0",
  "data": [],
  "msg": "success"
}