curl --request DELETE \
--url https://api.example.com/v1/organizations/{organizationId}/projects/{projectId}/content/{id}Delete a content item
curl --request DELETE \
--url https://api.example.com/v1/organizations/{organizationId}/projects/{projectId}/content/{id}{
"message": "Content successfully deleted",
"id": "cont124"
}
deleted. The content can be restored by updating its status. Version history is preserved.{
"error": {
"code": "NOT_FOUND",
"message": "Content not found"
}
}
curl -X DELETE "https://api.metabind.ai/v1/organizations/org123/projects/proj456/content/cont124" \
-H "Authorization: Bearer YOUR_API_KEY"