GET api/municipalityDictionary/get

Returns all municipality in specific account context

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of GetMunicipalityResponse
NameDescriptionTypeAdditional information
Id

globally unique identifier

None.

Name

string

None.

Number

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": "3c40a489-61c2-4a1e-a590-55ed908ed741",
    "Name": "sample string 2",
    "Number": "sample string 3"
  },
  {
    "Id": "3c40a489-61c2-4a1e-a590-55ed908ed741",
    "Name": "sample string 2",
    "Number": "sample string 3"
  }
]

application/xml, text/xml

Sample:
<ArrayOfGetMunicipalityResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Alice.Dto.Responses">
  <GetMunicipalityResponse>
    <Id>3c40a489-61c2-4a1e-a590-55ed908ed741</Id>
    <Name>sample string 2</Name>
    <Number>sample string 3</Number>
  </GetMunicipalityResponse>
  <GetMunicipalityResponse>
    <Id>3c40a489-61c2-4a1e-a590-55ed908ed741</Id>
    <Name>sample string 2</Name>
    <Number>sample string 3</Number>
  </GetMunicipalityResponse>
</ArrayOfGetMunicipalityResponse>