This workflow follows the Executecommand → HTTP Request recipe pattern — see all workflows that pair these two integrations.
The workflow JSON
Copy or download the full n8n JSON below. Paste it into a new n8n workflow, add your credentials, activate. Full import guide →
{
"name": "TrustField Agentic Cal Booking",
"nodes": [
{
"parameters": {},
"id": "trigger",
"name": "On Interested Reply",
"type": "n8n-nodes-base.manualTrigger",
"typeVersion": 1,
"position": [
240,
300
]
},
{
"parameters": {
"method": "GET",
"url": "https://api.cal.com/v2/slots",
"sendQuery": true,
"queryParameters": {
"parameters": [
{
"name": "eventTypeId",
"value": "={{$env.CAL_COM_EVENT_TYPE_ID}}"
},
{
"name": "startTime",
"value": "={{$now}}"
},
{
"name": "endTime",
"value": "={{$now.plus({days: 7})}}"
}
]
}
},
"id": "slots",
"name": "Cal.com Slots",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 4,
"position": [
480,
300
]
},
{
"parameters": {
"method": "POST",
"url": "https://api.cal.com/v2/bookings",
"sendBody": true,
"bodyParameters": {
"parameters": [
{
"name": "eventTypeId",
"value": "={{$env.CAL_COM_EVENT_TYPE_ID}}"
},
{
"name": "start",
"value": "={{$json.start}}"
},
{
"name": "attendee",
"value": "={{$json.attendee}}"
}
]
}
},
"id": "book",
"name": "Cal.com Book",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 4,
"position": [
720,
300
]
},
{
"parameters": {
"command": "=./scripts/demo_book_agentic.sh --company \"{{$json.company}}\" --ref \"cal:{{$json.uid}}\""
},
"id": "log_demo",
"name": "Log demo-tracker",
"type": "n8n-nodes-base.executeCommand",
"typeVersion": 1,
"position": [
960,
300
]
}
],
"connections": {
"On Interested Reply": {
"main": [
[
{
"node": "Cal.com Slots",
"type": "main",
"index": 0
}
]
]
},
"Cal.com Slots": {
"main": [
[
{
"node": "Cal.com Book",
"type": "main",
"index": 0
}
]
]
},
"Cal.com Book": {
"main": [
[
{
"node": "Log demo-tracker",
"type": "main",
"index": 0
}
]
]
}
},
"meta": {
"description": "See docs/gtm/AGENTIC_CAL_BOOKING.md \u00b7 demo_book_agentic.sh"
}
}
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
TrustField Agentic Cal Booking. Uses httpRequest, executeCommand. Event-driven trigger; 4 nodes.
Source: https://gist.github.com/kazemnezhadsina144-dot/7c4826fbe2e149d75abc832b5a0b3d0f — original creator credit. Request a take-down →
Related workflows
Workflows that share integrations, category, or trigger type with this one. All free to copy and import.
KP Case Agent Native n8n. Uses executeCommand, httpRequest. Event-driven trigger; 12 nodes.
Clara Pipeline A - Demo to v1. Uses executeCommand, httpRequest. Event-driven trigger; 8 nodes.
This workflow creates a multi-talented AI assistant named Simran that interacts with users via Telegram. It can handle text and voice messages, understand the user's intent, and perform various tasks.
RAG CHATBOT Main. Uses telegram, telegramTrigger, lmChatOpenAi, n8n-nodes-mcp. Event-driven trigger; 87 nodes.
Template Nodes Example. Uses CUSTOM, formTrigger, executeWorkflowTrigger, chatTrigger. Event-driven trigger; 70 nodes.