Withdraw-BankTransfer-v3-examples: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| Line 52: | Line 52: | ||
} | } | ||
} | } | ||
= Foreign | |||
= Foreign USD transfer, format: other = | |||
{ | |||
"Amount": 5000, | |||
"Currency": "USD", | |||
"Comment": "Bank transfer comment, max length is 90", | |||
"BankAccount":{ | |||
"AccountNumber": "33167448514568748013321", | |||
"Format": "other", | |||
"Country": "usa", | |||
} | |||
"Bank": { | |||
"Name": "Bank name", | |||
"Address": { | |||
"Street": "street and street number" | |||
"City": "city" | |||
"Zip": "zip" | |||
} | |||
} | |||
"Recipient": { | |||
"Name" : "name" | |||
"Address" : { | |||
"Street": "street and street number" | |||
"City": "city" | |||
"Zip": "zip" | |||
"Country": "country iso 3" | |||
} | |||
} | |||
} | |||
Revision as of 10:54, 2 June 2022
Domestic HUF transfer, format: GIRO
{
"Amount": 1000,
"Currency": "HUF",
"Comment": "Bank transfer comment, max length is 90",
"BankAccount":{
"AccountNumber": "117730161111101800000000",
"Country": "Hun",
"Format": "GIRO",
}
"Recipient": {
"Name" : "name"
}
}
Domestic CZK transfer, format: Czech
{
"Amount": 1000,
"Currency": "CZK",
"Comment": "Bank transfer comment, max length is 90",
"BankAccount":{
"AccountNumber": "000000-1651063018/3030",
"Country": "cze",
"Format": "Czech",
}
"Recipient": {
"Name" : "name"
}
}
Foreign EUR transfer, format: IBAN
{
"Amount": 10000,
"Currency": "HUF",
"Comment": "Bank transfer comment, max length is 90",
"BankAccount":{
"AccountNumber": "DE82107003781032720351100005",
"Format": "IBAN",
"Country": "Deu",
}
"Bank": {
"SwiftCode" : "GNBADEU0XXX"
}
"Recipient": {
"Name" :
"Address" : {
"Street": "street and street number"
"City": "city"
"Zip": "zip"
"Country": "country iso 3"
}
}
}
Foreign USD transfer, format: other
{
"Amount": 5000,
"Currency": "USD",
"Comment": "Bank transfer comment, max length is 90",
"BankAccount":{
"AccountNumber": "33167448514568748013321",
"Format": "other",
"Country": "usa",
}
"Bank": {
"Name": "Bank name",
"Address": {
"Street": "street and street number"
"City": "city"
"Zip": "zip"
}
}
"Recipient": {
"Name" : "name"
"Address" : {
"Street": "street and street number"
"City": "city"
"Zip": "zip"
"Country": "country iso 3"
}
}
}