GET api/Street?street={street}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| street | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of Street| Name | Description | Type | Additional information |
|---|---|---|---|
| MapEast | decimal number |
None. |
|
| MapNorth | decimal number |
None. |
|
| Details | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"MapEast": 1.1,
"MapNorth": 2.1,
"Details": "sample string 3"
},
{
"MapEast": 1.1,
"MapNorth": 2.1,
"Details": "sample string 3"
}
]
text/xml
Sample:
<ArrayOfStreet xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Llpg2.core.Entities">
<Street>
<Details>sample string 3</Details>
<MapEast>1.1</MapEast>
<MapNorth>2.1</MapNorth>
</Street>
<Street>
<Details>sample string 3</Details>
<MapEast>1.1</MapEast>
<MapNorth>2.1</MapNorth>
</Street>
</ArrayOfStreet>