unpublishBot
Remove a published Typebot chatbot from availability using a JSON-based interface. Specify the bot ID to unpublish, ensuring control over active chatbot deployments.
Instructions
Despublica un Typebot existente
Input Schema
Name | Required | Description | Default |
---|---|---|---|
botId | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"botId": {
"minLength": 1,
"type": "string"
}
},
"required": [
"botId"
],
"type": "object"
}