post
https://sandboxapi.legendtrading.com/app/confirmdeposit
Call this API when users confirmed they made a deposit, Legend sends an Email to the user and let him know the next steps. 用户确认已完成汇款,系统给用户发送一封通知邮件。
import requests
headers = {
'Authorization': 'Bearer %s' % api_token,
'Accept':'application/json'
}
data = {
'user_id': 'woshikeaidexiaoxiong'
}
response = requests.get('https://sandboxapi.legendtrading.com/app/userbalances', json=data, headers=headers)
data = response.json()
print(data)