delete_entry
Removes a specific entry from the content management system by specifying its UID and content type UID. Simplifies data cleanup and management in contentstack-mcp.
Instructions
Deletes an entry identified by its UID and content type UID.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content_type_uid | Yes | Content type UID | |
entry_uid | Yes | Entry UID to delete |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"content_type_uid": {
"description": "Content type UID",
"type": "string"
},
"entry_uid": {
"description": "Entry UID to delete",
"type": "string"
}
},
"required": [
"content_type_uid",
"entry_uid"
],
"type": "object"
}