接入 API

POST /api/v1/payout

请求

请求参数

名称类型是否必须描述
pidinteger(int64)项目编号
currencystring币种标识
addressstring提币地址
amountstring金额
callback_urlstring回调地址,该提币信息被处理时会向对应的callback_url发起回调通知,回调详情请参考 回调 > 提币 部分
third_party_idstring调用方业务编号
remarkstring备注
noncestring6位随机字符串
timestampinteger(int64)时间戳
signstring签名
请求示例
{
  "pid": 1382528827416576,
  "currency": "195@195",
  "address": "TXsmKpEuW7qWnXzJLGP9eDLvWPR2GRn1FS",
  "amount": "1.1",
  "remark": "payout",
  "third_party_id": "c9231e604da54469a735af3f449c880f",
  "callback_url": "http://xxx.com/payout/callback",
  "nonce": "hwlkk6",
  "timestamp": 1688004243314,
  "sign": "d6eef2de79e39f434a38efb910213ba6"
}

返回

返回结果

名称类型描述
codestring返回码
msgstring返回信息
dataobject返回数据

返回数据 data 对象

名称类型描述
cidinteger(int64)系统流水号
返回示例
{
  "code": "00000",
  "msg": "ok",
  "data": {
    "cid": 1382688606330880
  }
}