deleteArticle
Function used to hide articles.
Example Usage
$.fn.deleteArticle({
articleGuid: 'd2c5396d-7741-4449-9d24-0d33de3sd530',
isSocialArticle: 1,
onSuccess: function (data) {
// handle response
},
beforeSend: function (obj) {
}
});
Parameters
Parameter | type | Required | Description |
---|---|---|---|
articleGuid | string | yes | GUID of the article |
isSocialArticle | int | yes | Whether the article is social or not |
Response Example
{"success":1}
Updated over 7 years ago