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