You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1.3 KiB

transfer.md

打款/转账/提现

  • {Domain}/v3/payouts/pay

Request

参数名 M/C/O 描述
accountToken M 我方系统中收款人账号编号
amount M 金额
currency M 币种
customerNo M 收款人客户编号
invoiceId O 商户系统中订单编号,唯一ID
subject O 收款人打款通知邮件标题(暂未使用)
note O 附言
description O 描述
note O 附言
{
    "accountToken": "2010305228294111721580",
    "amount": "200",
    "currency": "USD",
    "customerNo": "2000305228294106374322",
    "description": "thank you",
    "invoiceId": "fd641a80dfd814afdbf0e68ce5b6d2ff",
    "ipnUrl": "https://example.com/notify",
    "merchantNo": "202333",
    "note": "Payouts, Thanks",
    "storeNo": "301854",
    "subject": "Payouts",
    "verifySign": "2606ac28c2f7bda525f4d7cc3ff6fca5"
}

Response

{
    "result":
    {
        "amount": "200.00",
        "transactionFee": "14.00",
        "transactionNo": "305469836617940464",
        "createdTime": "2022-10-31T12:13:03Z",
        "invoiceId": "fd641a80dfd814afdbf0e68ce5b6d2ff",
        "currency": "USD",
        "accountToken": "2010305228294111721580",
        "customerNo": "2000305228294106374322",
        "status": "pending"
    },
    "ret_msg": "pending",
    "ret_code": "000100"
}