GET api/Coordinates?postcode={postcode}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| postcode | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of Coordinate| Name | Description | Type | Additional information |
|---|---|---|---|
| MapEast | decimal number |
None. |
|
| MapNorth | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"MapEast": 1.0,
"MapNorth": 2.0
},
{
"MapEast": 1.0,
"MapNorth": 2.0
}
]
text/xml
Sample:
<ArrayOfCoordinate xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Llpg2.core.Entities">
<Coordinate>
<MapEast>1</MapEast>
<MapNorth>2</MapNorth>
</Coordinate>
<Coordinate>
<MapEast>1</MapEast>
<MapNorth>2</MapNorth>
</Coordinate>
</ArrayOfCoordinate>