GET api/Region/{regionCode}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
regionCode

string

Required

Body Parameters

None.

Response Information

Resource Description

GipRegionInfo
NameDescriptionTypeAdditional information
RegionalCode

string

None.

GemeindeId

integer

None.

Gemeinde

string

None.

BezirkId

integer

None.

Bezirk

string

None.

LandId

integer

None.

Land

string

None.

Staat

string

None.

BBox

Collection of decimal number

None.

Error

string

None.

Response Formats

application/json, text/json

Sample:
{
  "RegionalCode": "sample string 1",
  "GemeindeId": 2,
  "Gemeinde": "sample string 3",
  "BezirkId": 4,
  "Bezirk": "sample string 5",
  "LandId": 6,
  "Land": "sample string 7",
  "Staat": "sample string 8",
  "BBox": [
    1.1,
    2.1
  ],
  "Error": "sample string 9"
}

text/html

Sample:
{"RegionalCode":"sample string 1","GemeindeId":2,"Gemeinde":"sample string 3","BezirkId":4,"Bezirk":"sample string 5","LandId":6,"Land":"sample string 7","Staat":"sample string 8","BBox":[1.1,2.1],"Error":"sample string 9"}

application/xml, text/xml

Sample:
<GipRegionInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GIP_Communicator_Server.Models">
  <BBox xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:double>1.1</d2p1:double>
    <d2p1:double>2.1</d2p1:double>
  </BBox>
  <Bezirk>sample string 5</Bezirk>
  <BezirkId>4</BezirkId>
  <Error>sample string 9</Error>
  <Gemeinde>sample string 3</Gemeinde>
  <GemeindeId>2</GemeindeId>
  <Land>sample string 7</Land>
  <LandId>6</LandId>
  <RegionalCode>sample string 1</RegionalCode>
  <Staat>sample string 8</Staat>
</GipRegionInfo>