GET apioauth/poi/get
Get all pois
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
A GetPOIResponseModel
GetPOIResponseModel| Name | Description | Type | Additional information |
|---|---|---|---|
| POIList |
The list of POIs requested |
Collection of POI |
None. |
Response Formats
application/json, text/json
Sample:
{
"POIList": [
{
"POIID": 1,
"POIName": "sample string 2",
"GroupId": 1
},
{
"POIID": 1,
"POIName": "sample string 2",
"GroupId": 1
}
]
}
application/xml, text/xml
Sample:
<GetPOIResponseModel xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<POIList>
<POI>
<POIID>1</POIID>
<POIName>sample string 2</POIName>
<GroupId>1</GroupId>
</POI>
<POI>
<POIID>1</POIID>
<POIName>sample string 2</POIName>
<GroupId>1</GroupId>
</POI>
</POIList>
</GetPOIResponseModel>