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. 提现

查询提现记录

GET
/api/v1/wallet/withdrawal/list

Request

Query Params

Header Params

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 '/api/v1/wallet/withdrawal/list?current=undefined&size=undefined' \
--header 'tenant-id: 1'

Responses

🟢200OK
application/json
查询成功
Bodyapplication/json

Example
{
    "code": 0,
    "msg": "success",
    "data": {
        "records": [
            {
                "orderId": "string",
                "externalOrderId": "string",
                "network": "string",
                "currency": "string",
                "toAddress": "string",
                "amount": 0,
                "fee": 0,
                "status": "PENDING",
                "txHash": "string",
                "remark": "string",
                "createTime": "2019-08-24T14:15:22.123Z",
                "updateTime": "2019-08-24T14:15:22.123Z"
            }
        ],
        "total": 0,
        "current": 0,
        "size": 0
    },
    "ok": true
}
Modified at 2026-05-07 09:40:42
Previous
发起提现
Next
查询单笔提现
Built with