POST apioauth/poi/delete

Delete any desired POIS

Request Information

URI Parameters

None.

Body Parameters

The DeletePOIRequestModel

OAuthDeletePOIRequestModel
NameDescriptionTypeAdditional information
POIIDList

A list of poi ids which need deleting

Collection of unsigned integer

None.

Request Formats

application/json, text/json

Sample:
{
  "POIIDList": [
    1,
    2
  ]
}

application/xml, text/xml

Sample:
<OAuthDeletePOIRequestModel 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>
</OAuthDeletePOIRequestModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

A AssignRemoveDeleteResponseModel

AssignRemoveDeleteResponseModel
NameDescriptionTypeAdditional information
RequestStatus

Status indicating if a web service call was successful

boolean

None.

RequestMessage

Any extra information indicating why a call was not successful

string

None.

Response Formats

application/json, text/json

Sample:
{
  "RequestStatus": true,
  "RequestMessage": "sample string 2"
}

application/xml, text/xml

Sample:
<AssignRemoveDeleteResponseModel xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <RequestStatus>true</RequestStatus>
  <RequestMessage>sample string 2</RequestMessage>
</AssignRemoveDeleteResponseModel>