deleteOrganizationContent
Remove specific content from an organization's database by providing the content's unique ID using the Content Server's tool.
Instructions
Delete specific content from the organization's database
Input Schema
Name | Required | Description | Default |
---|---|---|---|
contentId | Yes | The ID of the content to delete |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"contentId": {
"description": "The ID of the content to delete",
"type": "string"
}
},
"required": [
"contentId"
],
"type": "object"
}