post
https://sandboxapi.legendtrading.com/app/refund
The user initiates a refund request through this api. 用户通过该接口发起退款申请。
import requests
headers = {
'Authorization': 'Bearer %s' % api_token,
'Accept':'application/json'
}
data = {
'user_id': 'woshikeaidexiaoxiong'
}
response = requests.get('https://sandboxapi.legendtrading.com/app/refund', json=data, headers=headers)
data = response.json()
print(data)退款申请说明:
1.用户1次退款金额不能超过用户账户里该币种的余额。
2.用户如果有该币种唯一银行账号,退款则打到该账号,如果用户没有银行账号或者不止一个账号,则会发封邮件给用户确认退款账号。
