Withdraw-BankTransfer-v3-examples: Difference between revisions

From Barion Documentation
Jump to navigation Jump to search
(Created page with "= Domestic HUF transfer, format: GIRO = { "Amount": 1000, "Currency": "HUF", "Comment": "Bank transfer comment, max length is 90", "BankAccount":{ "Ac...")
 
m (Added ron and pln examples)
 
(8 intermediate revisions by 2 users not shown)
Line 1: Line 1:
= Domestic HUF transfer, format: GIRO =
= Domestic HUF transfer, format: GIRO =
Example request for withdrawing from HUF account to a Hungarian Forint bank account.
  {
  {
     "Amount": 1000,
     "Amount": 1000,
     "Currency": "HUF",
     "Currency": "HUF",
     "Comment": "Bank transfer comment, max length is 90",
     "Comment": "Bank transfer comment for the withdrawal, max length is 90",
     "BankAccount":{
     "BankAccount":{
         "AccountNumber": "117730161111101800000000",  
         "AccountNumber": "117730161111101800000000",  
         "Country": "Hun",
         "Country": "hun",
         "Format": "GIRO",
         "Format": "GIRO"
     }
     },
     "Recipient": {
     "Recipient": {
         "Name" : "name"
         "Name" : "Fekete Ivan"
     }
     }
  }
  }


= Domestic CZK transfer, format: Czech =
= Domestic CZK transfer, format: Czech =
Example request for withdrawing from CZK account to a Czech CZK bank account.
  {
  {
     "Amount": 1,
     "Amount": 1000,
     "Currency": "CZK",
     "Currency": "CZK",
     "Comment": "Bank transfer comment, max length is 90",
     "Comment": "Bank transfer comment for the withdrawal, max length is 90",
     "BankAccount":{
     "BankAccount":{
         "AccountNumber": "000000-1651063018/3030",  
         "AccountNumber": "000000-1651063018/3030",  
         "Country": "cze",
         "Country": "cze",
         "Format": "Czech",
         "Format": "Czech"
    },
    "Recipient": {
        "Name" : "Frantisek Bilek"
     }
     }
}
= Domestic PLN transfer, format: Polish =
Example request for withdrawing from PLN account to a Polish PLN bank account.
{
    "Amount": 1000,
    "Currency": "PLN",
    "Comment": "Bank transfer comment for the withdrawal, max length is 90",
    "BankAccount":{
        "AccountNumber": "61109010140000071219812874",
        "Country": "pol",
        "Format": "Polish"
    },
     "Recipient": {
     "Recipient": {
         "Name" : "name"
         "Name" : "Oskar Szymczak"
     }
     }
  }
  }


= Foreign HUF transfer, format: other =
= Foreign RON transfer, format: IBAN =
Example request for withdrawing from RON account to a Romanian RON bank account.
{
    "Amount": 1000,
    "Currency": "RON",
    "Comment": "Bank transfer comment for the withdrawal, max length is 90",
    "BankAccount":{
        "AccountNumber": "RO49AAAA1B31007593840000",
        "Country": "rou",
        "Format": "IBAN"
    },
    "Recipient": {
        "Name" : "Vlad Diaconu",
        "Address" : {
              "Street": "Strada Mihai Eminescu 47",
              "City": "București",
              "Zip": "020983",
              "Country": "rou"
        }
    }
}


= Foreign HUF transfer, format: other =
= 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"
        }
    }
}

Latest revision as of 15:03, 29 October 2025

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"
   }
}

Domestic PLN transfer, format: Polish

Example request for withdrawing from PLN account to a Polish PLN bank account.

{
   "Amount": 1000,
   "Currency": "PLN",
   "Comment": "Bank transfer comment for the withdrawal, max length is 90",
   "BankAccount":{
       "AccountNumber": "61109010140000071219812874",
       "Country": "pol",
       "Format": "Polish"
   },
   "Recipient": {
       "Name" : "Oskar Szymczak"
   }
}

Foreign RON transfer, format: IBAN

Example request for withdrawing from RON account to a Romanian RON bank account.

{
   "Amount": 1000,
   "Currency": "RON",
   "Comment": "Bank transfer comment for the withdrawal, max length is 90",
   "BankAccount":{
       "AccountNumber": "RO49AAAA1B31007593840000", 
       "Country": "rou",
       "Format": "IBAN"
   },
   "Recipient": {
       "Name" : "Vlad Diaconu",
       "Address" : {
              "Street": "Strada Mihai Eminescu 47",
              "City": "București",
              "Zip": "020983",
              "Country": "rou"
       }
   }
}

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"
       }
   }
}