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.

59 lines
1.3 KiB

2 years ago
2 years ago
2 years ago
2 years ago
  1. transfer.md
  2. # 打款/转账/提现
  3. * {Domain}/v3/payouts/pay
  4. ### Request
  5. |参数名|M/C/O|描述|
  6. |---|---|---|
  7. |accountToken|M|我方系统中收款人账号编号|
  8. |amount|M|金额|
  9. |currency|M|币种|
  10. |customerNo|M|收款人客户编号|
  11. |invoiceId|O|商户系统中订单编号,唯一ID|
  12. |subject|O|收款人打款通知邮件标题(暂未使用)|
  13. |note|O|附言|
  14. |description|O|描述|
  15. |note|O|附言|
  16. ```json
  17. {
  18. "accountToken": "2010305228294111721580",
  19. "amount": "200",
  20. "currency": "USD",
  21. "customerNo": "2000305228294106374322",
  22. "description": "thank you",
  23. "invoiceId": "fd641a80dfd814afdbf0e68ce5b6d2ff",
  24. "ipnUrl": "https://example.com/notify",
  25. "merchantNo": "202333",
  26. "note": "Payouts, Thanks",
  27. "storeNo": "301854",
  28. "subject": "Payouts",
  29. "verifySign": "2606ac28c2f7bda525f4d7cc3ff6fca5"
  30. }
  31. ```
  32. ### Response
  33. ```json
  34. {
  35. "result":
  36. {
  37. "amount": "200.00",
  38. "transactionFee": "14.00",
  39. "transactionNo": "305469836617940464",
  40. "createdTime": "2022-10-31T12:13:03Z",
  41. "invoiceId": "fd641a80dfd814afdbf0e68ce5b6d2ff",
  42. "currency": "USD",
  43. "accountToken": "2010305228294111721580",
  44. "customerNo": "2000305228294106374322",
  45. "status": "pending"
  46. },
  47. "ret_msg": "pending",
  48. "ret_code": "000100"
  49. }
  50. ```