Block the AI from a Conversation
This action blocks the AI agent from responding in a specific conversation. Use this when you want only human agents to handle the conversation.
Node Configuration
| Property | Value |
|---|---|
| Node Type | n8n-nodes-base.cekat |
| Resource | conversation |
| Operation | blockAI |
| Credential | CekatOpenApi |
Setup
1
Add Node
Search for Cekat in the n8n node panel and add it to your workflow.
2
Set Resource
Select Conversation as the resource type.
3
Select Operation
Choose Block AI from the operation dropdown.
4
Enter Conversation ID
Provide the Conversation ID where AI should be blocked.
5
Connect Credential
Select or create a CekatOpenApi credential with your CekatAI API key.
6
Execute
Run the node to block the AI.
n8n Node JSON
json
{
"parameters": {
"resource": "conversation",
"operation": "blockAI"
},
"type": "n8n-nodes-base.cekat",
"typeVersion": 1,
"credentials": {
"CekatOpenApi": {
"id": "YOUR_CREDENTIAL_ID",
"name": "CekatAI account"
}
}
}
Parameters
Conversation IDstring*
The unique identifier of the conversation where AI should be blocked.
Output
json
{
"success": true,
"conversation_id": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
"ai_blocked": true
}
Use Cases
- Block AI when a human agent takes over a conversation
- Prevent AI from responding in sensitive or complex conversations
- Temporarily disable AI for VIP customer conversations
When AI is blocked, it will not respond to any messages in that conversation. Use Unblock AI to re-enable the AI agent.
