1. 地址订阅
錢包中台服務
  • 用户钱包
    • 创建用户钱包
      POST
    • 查询用户信息
      GET
    • 查询用户充值地址
      GET
  • 提现
    • 发起提现
      POST
    • 查询提现记录
      GET
    • 查询单笔提现
      GET
  • 地址订阅
    • 订阅监控地址
      POST
    • 修改订阅
      PUT
    • 取消订阅
      DELETE
    • 查询订阅列表
      GET
  • Webhook 回调
    • 充值确认通知
      POST
    • 提现成功通知
      POST
    • 监控地址到账通知
      POST
    • 提现拒绝通知
      POST
  • 错误码
    • 错误码说明
      GET
  • 支持的链与币种
    • 链与币种说明
      GET
  • 租户余额
    • 查询所有币种余额
      GET
    • 查询单币种余额
      GET
  • Schemas
    • CreateAccountRequest
    • BaseResponse
    • WithdrawalApplyDTO
    • WatchAddressDTO
    • R_UserAccountResp
    • UserAccountResp
    • WithdrawalVO
    • R_WithdrawalRequest
    • PageResult_WithdrawalRequest
    • PageResult_WithdrawalVO
    • WithdrawalRequest
    • WalletAccountUser
    • R_Page_WithdrawalRequest
    • WebhookPayload_DepositConfirmed
    • WalletUserBalance
    • R_Object
    • WebhookPayload_WithdrawalSuccess
    • WatchAddressResp
    • WebhookPayload_WatchDeposit
    • TenantBalanceVO
    • WebhookPayload_WithdrawalEvent
  1. 地址订阅

修改订阅

PUT
/api/v1/wallet/watch-address/{id}
修改标签、币种过滤或自定义 Webhook URL。地址和链不可修改。

Request

Path Params

Header Params

Body Params application/jsonRequired

Example
{
    "network": "BNB",
    "address": "string",
    "currency": "USDT",
    "label": "交易所热钱包",
    "webhookUrl": "string"
}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PUT '/api/v1/wallet/watch-address/' \
--header 'tenant-id: 1' \
--header 'Content-Type: application/json' \
--data '{
    "network": "BNB",
    "address": "string",
    "currency": "USDT",
    "label": "交易所热钱包",
    "webhookUrl": "string"
}'

Responses

🟢200OK
application/json
修改成功
Bodyapplication/json

Example
{
    "code": 0,
    "msg": "success",
    "data": {
        "id": 1,
        "tenantId": 1,
        "network": "BNB",
        "address": "0xe835233c318a422742ae675a9ebc0dccf5887c3b",
        "currency": null,
        "label": "交易所热钱包(已更新)",
        "webhookUrl": null,
        "status": "ENABLED",
        "createTime": "2026-04-01T12:00:00",
        "updateTime": "2026-04-01T15:30:00"
    },
    "ok": true
}
Modified at 2026-05-07 09:40:42
Previous
订阅监控地址
Next
取消订阅
Built with