跳转到主要内容

Documentation Index

Fetch the complete documentation index at: https://developer.wooxpro.com/llms.txt

Use this file to discover all available pages before exploring further.

查询邀请客户列表 (KEYED)

适用于代理商查询一定时间范围内邀请用户的返佣信息

请求URL

GET https://cloud-api.wooxpro.com/contract/private/affiliate/rebate-inviteUser

请求限制

参见 速率限制详细

请求参数

请求
curl https://cloud-api.wooxpro.com/contract/private/affiliate/rebate-inviteUser?start_time=1000000000&end_time=2000000000&page=1&size=10
字段类型是否必填描述
cidLong查询用户CID
start_timeLong查询数据开始时间戳(秒级时间戳)
end_timeLong查询数据结束时间戳(秒级时间戳)
pageInteger当前页
sizeInteger每页条数
注意
  • 填写时间范围的话,end_time 必须比 start_time 的值大, 并且start_timeend_time 最大支持 60 天的查询间隔
  • size 最大限制为50条, 如超过50条, 则只查询50条数据

响应详情

响应
{
  "code": "1000",
  "message": "OK",
  "success": true,
  "data": {
    "list": [
      {
        "rebateTotal": "0",
        "tradingVolTotal": "0",
        "cashbackRate": "0.00000000",
        "tradingFeeTotal": "0",
        "backRate": "30.00000000",
        "cid": 100000000,
        "status": 1
      }
    ],
    "page": 1,
    "size": 10,
    "total": 10
  },
  "requestId": "d0ca45a64b1449a79a5773c705165a27",
  "trace": null
}

字段类型描述
rebateTotalString累计返佣金额(已折算为USDT)
tradingVolTotalString累计交易量(已折算为USDT)
cashbackRateString返现比例
tradingFeeTotalString累计手续费(已折算为USDT)
backRateString返佣比例
cidLong用户CID
statusInteger返佣是否发放
-1= 已发放返佣
-0= 未发放返佣