POST apioauth/poialerts/delete
Delete POI alerts
Request Information
URI Parameters
None.
Body Parameters
The OAuthDeletePOIAlertRequestModel
OAuthDeletePOIAlertRequestModelName | Description | Type | Additional information |
---|---|---|---|
POIAlertIDList |
A list of poi alert ids which need deleting |
Collection of unsigned integer |
None. |
Request Formats
application/json, text/json
Sample:
{ "POIAlertIDList": [ 1, 2 ] }
application/xml, text/xml
Sample:
<OAuthDeletePOIAlertRequestModel xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <POIAlertIDList> <unsignedLong>1</unsignedLong> <unsignedLong>2</unsignedLong> </POIAlertIDList> </OAuthDeletePOIAlertRequestModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
The AssignRemoveDeleteResponseModel
AssignRemoveDeleteResponseModelName | Description | Type | Additional 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>