WithdrawControllerTest.http 542 B

123456789101112131415161718192021
  1. ### 连通性测试
  2. POST {{ baseUrl }}/withdraw/hello
  3. ### 用户提交提现申请
  4. POST {{ baseUrl }}/withdraw/create
  5. Content-Type: application/json
  6. dl-token: {{dl_token_var}}
  7. {
  8. "amount": 1100
  9. }
  10. ### 【超级管理员】 通过提现审批并给用户打款
  11. ### 对接之前一定要让管理员多确认一次,不要点pass就直接提交到后台来了,确认给他放款(amount/100)元
  12. POST {{ baseUrl }}/withdraw/pass
  13. Content-Type: application/json
  14. dl-token: {{dl_token_var}}
  15. {
  16. "withdraw_sn": "DLTBH_WD_17588746359625898"
  17. }