unpublish_entry
Remove a published entry from a specific environment and locale. Specify content type UID, entry UID, and environment to unpublish content efficiently.
Instructions
Unpublishes an entry from a specified environment and locale.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content_type_uid | Yes | Content type UID | |
entry_uid | Yes | Entry UID to unpublish | |
environment | Yes | Environment to unpublish from | |
locale | No | Locale code (defaults to en-us) | en-us |
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 unpublish",
"type": "string"
},
"environment": {
"description": "Environment to unpublish from",
"type": "string"
},
"locale": {
"default": "en-us",
"description": "Locale code (defaults to en-us)",
"type": "string"
}
},
"required": [
"content_type_uid",
"entry_uid",
"environment"
],
"type": "object"
}