GET api/{database}/CountryInfoList

Gets a list of CountryInfo that matches the specified criteria



Response Information

Response body formats

application/json, text/json

Sample:
[
  {
    "cbsCountry": "sample string 1",
    "codeIndexCard": 1,
    "countryId": "sample string 2",
    "description": "sample string 3",
    "ecMemberId": "sample string 4",
    "isoCode": "sample string 5",
    "isSepa": true
  },
  {
    "cbsCountry": "sample string 1",
    "codeIndexCard": 1,
    "countryId": "sample string 2",
    "description": "sample string 3",
    "ecMemberId": "sample string 4",
    "isoCode": "sample string 5",
    "isSepa": true
  },
  {
    "cbsCountry": "sample string 1",
    "codeIndexCard": 1,
    "countryId": "sample string 2",
    "description": "sample string 3",
    "ecMemberId": "sample string 4",
    "isoCode": "sample string 5",
    "isSepa": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfCountryInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/UNIT4.Multivers.API.BL.Base.Info">
  <CountryInfo>
    <CbsCountry>sample string 1</CbsCountry>
    <CodeIndexCard>1</CodeIndexCard>
    <CountryId>sample string 2</CountryId>
    <Description>sample string 3</Description>
    <ECMemberId>sample string 4</ECMemberId>
    <IsSepa>true</IsSepa>
    <IsoCode>sample string 5</IsoCode>
  </CountryInfo>
  <CountryInfo>
    <CbsCountry>sample string 1</CbsCountry>
    <CodeIndexCard>1</CodeIndexCard>
    <CountryId>sample string 2</CountryId>
    <Description>sample string 3</Description>
    <ECMemberId>sample string 4</ECMemberId>
    <IsSepa>true</IsSepa>
    <IsoCode>sample string 5</IsoCode>
  </CountryInfo>
  <CountryInfo>
    <CbsCountry>sample string 1</CbsCountry>
    <CodeIndexCard>1</CodeIndexCard>
    <CountryId>sample string 2</CountryId>
    <Description>sample string 3</Description>
    <ECMemberId>sample string 4</ECMemberId>
    <IsSepa>true</IsSepa>
    <IsoCode>sample string 5</IsoCode>
  </CountryInfo>
</ArrayOfCountryInfo>