POST api/poialerts/delete

Request Information

URI Parameters

None.

Body Parameters

DeletePOIAlertRequestModel
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.

POIAlertIDList

A list of poi alert ids which need deleting

Collection of unsigned integer

None.

Request Formats

application/json, text/json

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

application/xml, text/xml

Sample:
<DeletePOIAlertRequestModel 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>
  <POIAlertIDList>
    <unsignedLong>1</unsignedLong>
    <unsignedLong>2</unsignedLong>
  </POIAlertIDList>
</DeletePOIAlertRequestModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

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>