POST api/poi/delete

Delete any desired POIS

Request Information

URI Parameters

None.

Body Parameters

The DeletePOIRequestModel

DeletePOIRequestModel
NameDescriptionTypeAdditional information
Token

The token returned after login used for authentication

string

None.

UserID

The user id returned after login used for authentication

unsigned integer

None.

POIIDList

A list of poi ids which need deleting

Collection of unsigned integer

None.

Request Formats

application/json, text/json

Sample:
{
  "Token": "sample string 1",
  "UserID": 2,
  "POIIDList": [
    1,
    2
  ]
}

application/xml, text/xml

Sample:
<DeletePOIRequestModel xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <Token>sample string 1</Token>
  <UserID>2</UserID>
  <POIIDList>
    <unsignedLong>1</unsignedLong>
    <unsignedLong>2</unsignedLong>
  </POIIDList>
</DeletePOIRequestModel>

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>