This method removes a problem record from the "Report Problem" list based on the provided ID.
URL
https://api.plupper.com/resources/problem/<id>
Formats
plain text
HTTP Method
DELETE
Requires Authentication
HTTP BASIC
API rate limited
No
Parameters
none
Response
200 OK
Example queries
- DELETE https://api.plupper.com/resources/problem/<123>
- jQuery example
$.ajax({ type: "DELETE", url: "https://api.plupper.com/resources/problem/" + problemId, username: "john.lennon@example.com", password: "mysecret", success: function() { alert("Problem Deleted"); } });