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