post
https://sandboxapi.legendtrading.com/app/bankaccount
Add a bank account in the specified currency to the specified user - 给指定用户添加一个指定币种的银行账号
To determine the params, use the response you got from the /app/bankaccount/fields endpoint. Make sure you’ve sent all the data fields required for the currency.
Raw_body JSON struct(params required):
{
"uid": "qa159165",
"params": {
"currency": "EUR",
"account_name": "Piero Ventura junco",
"recipient_address": "Calle Caramanta ",
"bank_country": "ES",
"iban": "ES23 0049 5525 5321 1203 7931",
"payment_method": "SEPA", // optional. We will validate the bank fields if it's provided.
"swift_bic":"123"
}
}payment_method field is optional. We only need to add it if we choose FPS/SEPA/WIRE/SWIFT in the /app/withdrawmethods API.
