POST apioauth/poi/get
Get pois by a list of ids
Request Information
URI Parameters
None.
Body Parameters
The CreateEditPOIRequestModel made
OAuthGetPOIRequestModel| Name | Description | Type | Additional information |
|---|---|---|---|
| POIIDList |
A list of poi ids being requested |
Collection of unsigned integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"POIIDList": [
1,
2
]
}
application/xml, text/xml
Sample:
<OAuthGetPOIRequestModel xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<POIIDList>
<unsignedLong>1</unsignedLong>
<unsignedLong>2</unsignedLong>
</POIIDList>
</OAuthGetPOIRequestModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
A CreateEditPOIResponseModel on success
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>