GET api/Location/GetStreetByCode?streetCodePostil={streetCodePostil}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| streetCodePostil | string |
Required |
Body Parameters
None.
Response Information
Resource Description
StreetModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Name | string |
None. |
|
| CityCodePostil | integer |
None. |
|
| StreetCodePostil | string |
None. |
|
| StreetNumberPostil | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": 1,
"Name": "sample string 2",
"CityCodePostil": 3,
"StreetCodePostil": "sample string 4",
"StreetNumberPostil": 5
}
application/xml, text/xml
Sample:
<StreetModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Emalogic.Locations.Services.Api.Models.Location"> <CityCodePostil>3</CityCodePostil> <Id>1</Id> <Name>sample string 2</Name> <StreetCodePostil>sample string 4</StreetCodePostil> <StreetNumberPostil>5</StreetNumberPostil> </StreetModel>