Delete an article
DELETE/v2/help_center/articles/{id}
Deletes an existing article.
Path Parameters
id- The unique identifier of the article to delete
Response
Returns a deletion confirmation object:
id- The ID of the deleted articleobject- Always “article”deleted- Always true
Errors
404- Article not found in your organization’s help center
Delete an article
curl https://do.featurebase.app/v2/help_center/articles/$ID \
-X DELETE \
-H "Authorization: Bearer $FEATUREBASE_API_KEY"{
"id": "1234567",
"deleted": true,
"object": "article"
}Returns Examples
{
"id": "1234567",
"deleted": true,
"object": "article"
}