unpublish_form
Hide forms from the document creation interface to temporarily disable them without deletion. Use this tool to manage form availability by specifying the form ID.
Instructions
Hides a form from document creation interface
Usage: Temporarily disable forms without deletion Returns: Updated form status
Input Schema
Name | Required | Description | Default |
---|---|---|---|
form_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"form_id": {
"anyOf": [
{
"type": "integer"
},
{
"type": "string"
}
],
"title": "Form Id"
}
},
"required": [
"form_id"
],
"type": "object"
}