GET Api/v1/Landmarks
Fetches a list of all landmarks for the company.
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of LandmarkModel| Name | Description | Type | Additional information |
|---|---|---|---|
| PublicId | string |
None. |
|
| MarkerName | string |
None. |
|
| Reading | GpsReadingModel |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"publicId": "sample string 1",
"markerName": "sample string 2",
"reading": {
"quality": 1,
"longitude": 2.0,
"latitude": 3.0
}
},
{
"publicId": "sample string 1",
"markerName": "sample string 2",
"reading": {
"quality": 1,
"longitude": 2.0,
"latitude": 3.0
}
}
]