GET api/MasterData/Land

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of CountryModel
NameDescriptionTypeAdditional information
nLandKey

integer

None.

cLandCode

string

None.

cLand

string

None.

ngueltig

byte

None.

cTelVorw

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "nLandKey": 1,
    "cLandCode": "sample string 2",
    "cLand": "sample string 3",
    "ngueltig": 64,
    "cTelVorw": "sample string 5"
  },
  {
    "nLandKey": 1,
    "cLandCode": "sample string 2",
    "cLand": "sample string 3",
    "ngueltig": 64,
    "cTelVorw": "sample string 5"
  }
]

text/html

Sample:
[{"nLandKey":1,"cLandCode":"sample string 2","cLand":"sample string 3","ngueltig":64,"cTelVorw":"sample string 5"},{"nLandKey":1,"cLandCode":"sample string 2","cLand":"sample string 3","ngueltig":64,"cTelVorw":"sample string 5"}]

application/xml, text/xml

Sample:
<ArrayOfCountryModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/StarJob.Bll.MasterData.Countries.Models">
  <CountryModel>
    <cLand>sample string 3</cLand>
    <cLandCode>sample string 2</cLandCode>
    <cTelVorw>sample string 5</cTelVorw>
    <nLandKey>1</nLandKey>
    <ngueltig>64</ngueltig>
  </CountryModel>
  <CountryModel>
    <cLand>sample string 3</cLand>
    <cLandCode>sample string 2</cLandCode>
    <cTelVorw>sample string 5</cTelVorw>
    <nLandKey>1</nLandKey>
    <ngueltig>64</ngueltig>
  </CountryModel>
</ArrayOfCountryModel>