取消订阅区块事件和交易事件的相关数据,每次最多可以批量取消 20 个订阅。取消订阅成功后消息不再通过 webhook 推送。
POST https://www.okx.com/api/v5/wallet/webhook/unsubscribe
Parameter | Type | Required | Description |
---|---|---|---|
id | String | Yes | 订阅的唯一标识 |
Parameter | Type | Description |
---|---|---|
id | String | 订阅的唯一标识 |
curl --location --request POST 'https://www.okx.com/api/v5/wallet/webhook/unsubscribe' \
--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 '[
{
"id":"1"
}
]'
{
"code":"0",
"data":[
{
"id":"1"
}
],
"msg":""
}