Withdraw-BankTransfer-v3-examples: Difference between revisions

From Barion Documentation
Jump to navigation Jump to search
No edit summary
No edit summary
 
(2 intermediate revisions by 2 users not shown)
Line 7: Line 7:
     "BankAccount":{
     "BankAccount":{
         "AccountNumber": "117730161111101800000000",  
         "AccountNumber": "117730161111101800000000",  
         "Country": "Hun",
         "Country": "hun",
         "Format": "GIRO",
         "Format": "GIRO"
     }
     },
     "Recipient": {
     "Recipient": {
         "Name" : "Fekete Ivan"
         "Name" : "Fekete Ivan"
Line 24: Line 24:
         "AccountNumber": "000000-1651063018/3030",  
         "AccountNumber": "000000-1651063018/3030",  
         "Country": "cze",
         "Country": "cze",
         "Format": "Czech",
         "Format": "Czech"
     }
     },
     "Recipient": {
     "Recipient": {
         "Name" : "Frantisek Bilek"
         "Name" : "Frantisek Bilek"
Line 40: Line 40:
         "AccountNumber": "DE82107003781032720351100005",  
         "AccountNumber": "DE82107003781032720351100005",  
         "Format": "IBAN",
         "Format": "IBAN",
         "Country": "Deu",
         "Country": "deu"
     }
     },
     "Bank": {
     "Bank": {
         "SwiftCode" : "GNBADEU0XXX"
         "SwiftCode" : "GNBADEU0XXX"
     }
     },
     "Recipient": {
     "Recipient": {
         "Name" :
         "Name" : "Jürgen Swarzer"
         "Address" : {
         "Address" : {
               "Street": "Johannes Strasse 5"
               "Street": "Johannes Strasse 5"
               "City": "Nürnberg"
               "City": "Nürnberg"
               "Zip": "115465"
               "Zip": "115465"
               "Country": "Deu"
               "Country": "deu"
         }
         }
     }
     }
  }
  }

Latest revision as of 08:06, 16 June 2022

Domestic HUF transfer, format: GIRO

Example request for withdrawing from HUF account to a Hungarian Forint bank account.

{
   "Amount": 1000,
   "Currency": "HUF",
   "Comment": "Bank transfer comment for the withdrawal, max length is 90",
   "BankAccount":{
       "AccountNumber": "117730161111101800000000", 
       "Country": "hun",
       "Format": "GIRO"
   },
   "Recipient": {
       "Name" : "Fekete Ivan"
   }
}

Domestic CZK transfer, format: Czech

Example request for withdrawing from CZK account to a Czech CZK bank account.

{
   "Amount": 1000,
   "Currency": "CZK",
   "Comment": "Bank transfer comment for the withdrawal, max length is 90",
   "BankAccount":{
       "AccountNumber": "000000-1651063018/3030", 
       "Country": "cze",
       "Format": "Czech"
   },
   "Recipient": {
       "Name" : "Frantisek Bilek"
   }
}

Foreign EUR transfer, format: IBAN

Example request for withdrawing from EUR account to a german EUR bank account.

{
   "Amount": 1000,
   "Currency": "EUR",
   "Comment": "Bank transfer comment for the withdrawal, max length is 90",
   "BankAccount":{
       "AccountNumber": "DE82107003781032720351100005", 
       "Format": "IBAN",
       "Country": "deu"
   },
   "Bank": {
       "SwiftCode" : "GNBADEU0XXX"
   },
   "Recipient": {
       "Name" : "Jürgen Swarzer"
       "Address" : {
              "Street": "Johannes Strasse 5"
              "City": "Nürnberg"
              "Zip": "115465"
              "Country": "deu"
       }
   }
}