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.

46 lines
1022 B

2 years ago
  1. transfer.md
  2. # 打款/转账/提现
  3. * {Domain}/v3/customers/account/create/bank-account
  4. ### Request
  5. ```json
  6. {
  7. "accountToken": "2010305228294111721580",
  8. "amount": "200",
  9. "currency": "USD",
  10. "customerNo": "2000305228294106374322",
  11. "description": "thank you",
  12. "invoiceId": "fd641a80dfd814afdbf0e68ce5b6d2ff",
  13. "ipnUrl": "https://example.com/notify",
  14. "merchantNo": "202333",
  15. "note": "Payouts, Thanks",
  16. "storeNo": "301854",
  17. "subject": "Payouts",
  18. "verifySign": "2606ac28c2f7bda525f4d7cc3ff6fca5"
  19. }
  20. ```
  21. ### Response
  22. ```json
  23. {
  24. "result":
  25. {
  26. "amount": "200.00",
  27. "transactionFee": "14.00",
  28. "transactionNo": "305469836617940464",
  29. "createdTime": "2022-10-31T12:13:03Z",
  30. "invoiceId": "fd641a80dfd814afdbf0e68ce5b6d2ff",
  31. "currency": "USD",
  32. "accountToken": "2010305228294111721580",
  33. "customerNo": "2000305228294106374322",
  34. "status": "pending"
  35. },
  36. "ret_msg": "pending",
  37. "ret_code": "000100"
  38. }
  39. ```