POST apioauth/poi/get

Create or edit POIs

Request Information

URI Parameters

None.

Body Parameters

The CreateEditPOIRequestModel made

OAuthGetPOIRequestModel
NameDescriptionTypeAdditional 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
NameDescriptionTypeAdditional 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"
    },
    {
      "POIID": 1,
      "POIName": "sample string 2"
    }
  ]
}

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>
    </POI>
    <POI>
      <POIID>1</POIID>
      <POIName>sample string 2</POIName>
    </POI>
  </POIList>
</GetPOIResponseModel>