This method deletes the FAQ record identified by the FAQ ID.
URL
https://api.plupper.com/resources/faq/<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/faq/<123>
- jQuery example
$.ajax({ type: "DELETE", url: "https://api.plupper.com/resources/faq/" + faqId, username: "john.lennon@example.com", password: "mysecret", success: function() { alert("FAQ Deleted"); } });