{ "id": "cmGsNvW9bEORABdo", "meta": { "instanceId": "workflow-d33d10db", "versionId": "1.0.0", "createdAt": "2025-09-29T07:07:46.885289", "updatedAt": "2025-09-29T07:07:46.885311", "owner": "n8n-user", "license": "MIT", "category": "automation", "status": "active", "priority": "high", "environment": "production" }, "name": "Bitrix24 Chatbot Application Workflow example with Webhook Integration", "tags": [ "automation", "n8n", "production-ready", "excellent", "optimized" ], "nodes": [ { "id": "ddd802bb-0da0-474d-b1e9-74f247e603e0", "name": "Bitrix24 Handler", "type": "n8n-nodes-base.webhook", "position": [ 0, 0 ], "webhookId": "c3ae607d-41f0-42bc-b669-c2c77936d443", "parameters": { "path": "bitrix24/handler.php", "options": {}, "httpMethod": "POST", "responseMode": "responseNode" }, "typeVersion": 1, "notes": "This webhook node performs automated tasks as part of the workflow." }, { "id": "5676a53e-6758-4ad5-ace6-e494fa10b6c3", "name": "Credentials", "type": "n8n-nodes-base.set", "position": [ 200, 0 ], "parameters": { "options": {}, "assignments": { "assignments": [ { "id": "030f8f90-2669-4c20-9eab-c572c4b7c70c", "name": "CLIENT_ID", "type": "string", "value": "local.6779636e712043.37129431" }, { "id": "de9bbb7a-b782-4540-b259-527625db8490", "name": "CLIENT_SECRET", "type": "string", "value": "dTzUfBoTFLxNhuzc1zsnDbCeii98ZaE5By4aQPQEOxLJAS9y6i" }, { "id": "86b7aff7-1e25-4b12-a366-23cf34e5a405", "name": "application_token", "type": "string", "value": "={{ $json.body['auth[application_token]'] }}" }, { "id": "69bbcb1f-ba6e-42eb-be8a-ee0707ce997d", "name": "domain", "type": "string", "value": "={{ $json.body['auth[domain]'] }}\n" }, { "id": "dc1b0515-f06a-4731-b0dc-912a8d04e56b", "name": "access_token", "type": "string", "value": "={{ $json.body['auth[access_token]'] }}" } ] }, "includeOtherFields": true }, "typeVersion": 3.4, "notes": "This set node performs automated tasks as part of the workflow." }, { "id": "b72c00cf-9f8c-4c2a-9093-b80d82bab85b", "name": "Validate Token", "type": "n8n-nodes-base.if", "position": [ 400, 0 ], "parameters": { "options": {}, "conditions": { "options": { "version": 2, "leftValue": "", "caseSensitive": true, "typeValidation": "strict" }, "combinator": "or", "conditions": [ { "id": "da73d0ba-6eeb-405e-89fe-9d041fd2e0cd", "operator": { "name": "filter.operator.equals", "type": "string", "operation": "equals" }, "leftValue": "={{ $json.CLIENT_ID }}", "rightValue": "={{ $json.application_token }}" }, { "id": "4ba90f7b-0299-4097-9ae7-6e4dee428a74", "operator": { "name": "filter.operator.equals", "type": "string", "operation": "equals" }, "leftValue": "1", "rightValue": "1" } ] } }, "typeVersion": 2.2, "notes": "This if node performs automated tasks as part of the workflow." }, { "id": "f0feb392-873a-4643-b7ad-0e6d9f877e82", "name": "Route Event", "type": "n8n-nodes-base.switch", "position": [ 600, 0 ], "parameters": { "rules": { "values": [ { "outputKey": "YOUR_CREDENTIAL_HERE", "conditions": { "options": { "version": 2, "leftValue": "", "caseSensitive": true, "typeValidation": "strict" }, "combinator": "and", "conditions": [ { "operator": { "type": "string", "operation": "equals" }, "leftValue": "={{ $json.body.event }}", "rightValue": "ONIMBOTMESSAGEADD" } ] }, "renameOutput": true }, { "outputKey": "YOUR_CREDENTIAL_HERE", "conditions": { "options": { "version": 2, "leftValue": "", "caseSensitive": true, "typeValidation": "strict" }, "combinator": "and", "conditions": [ { "id": "e9125f57-129e-4026-86ff-746d40b92b04", "operator": { "name": "filter.operator.equals", "type": "string", "operation": "equals" }, "leftValue": "={{ $json.body.event }}", "rightValue": "ONIMBOTJOINCHAT" } ] }, "renameOutput": true }, { "outputKey": "YOUR_CREDENTIAL_HERE", "conditions": { "options": { "version": 2, "leftValue": "", "caseSensitive": true, "typeValidation": "strict" }, "combinator": "and", "conditions": [ { "id": "2db7bed5-fd88-4900-b8d2-e27b49c2fcca", "operator": { "name": "filter.operator.equals", "type": "string", "operation": "equals" }, "leftValue": "={{ $json.body.event }}", "rightValue": "ONAPPINSTALL" } ] }, "renameOutput": true }, { "outputKey": "YOUR_CREDENTIAL_HERE", "conditions": { "options": { "version": 2, "leftValue": "", "caseSensitive": true, "typeValidation": "strict" }, "combinator": "and", "conditions": [ { "id": "b708d339-fd46-470d-b0d5-ff2eb405f5ce", "operator": { "name": "filter.operator.equals", "type": "string", "operation": "equals" }, "leftValue": "={{ $json.body.event }}", "rightValue": "ONIMBOTDELETE" } ] }, "renameOutput": true } ] }, "options": {} }, "typeVersion": 3.2, "notes": "This switch node performs automated tasks as part of the workflow." }, { "id": "56fcdc5f-d509-4c9f-a437-79c53add49f8", "name": "Process Message", "type": "n8n-nodes-base.function", "position": [ 800, 0 ], "parameters": { "functionCode": "// Process Message Node\nconst items = $input.all();\nconst item = items[0];\n\n// Get message data from the correct path\nconst message = item.json.body['data[PARAMS][MESSAGE]'];\nconst dialogId = item.json.body['data[PARAMS][DIALOG_ID]'];\n\n// Get auth data\nconst auth = {\n access_token: item.json.access_token,\n domain: item.json.domain\n};\n\nif (message.toLowerCase() === \"what's hot\") {\n return {\n json: {\n DIALOG_ID: dialogId,\n MESSAGE: \"Hi! I am an example-bot.\\nI repeat what you say\",\n AUTH: auth.access_token,\n DOMAIN: auth.domain\n }\n };\n} else {\n return {\n json: {\n DIALOG_ID: dialogId,\n MESSAGE: `You said:\\n${message}`,\n AUTH: auth.access_token,\n DOMAIN: auth.domain\n }\n };\n}" }, "typeVersion": 1, "notes": "This function node performs automated tasks as part of the workflow." }, { "id": "a647ed67-c812-4416-8c85-55a681bc7f80", "name": "Process Join", "type": "n8n-nodes-base.function", "position": [ 800, 160 ], "parameters": { "functionCode": "// Process Join Node\nconst items = $input.all();\nconst item = items[0];\n\n// Get dialog ID from the correct path\nconst dialogId = item.json.body['data[PARAMS][DIALOG_ID]'];\n\n// Get auth data\nconst auth = {\n access_token: item.json.access_token,\n domain: item.json.domain\n};\n\nreturn {\n json: {\n DIALOG_ID: dialogId,\n MESSAGE: 'Hi! I am an example-bot. I repeat what you say',\n AUTH: auth.access_token,\n DOMAIN: auth.domain\n }\n};" }, "typeVersion": 1, "notes": "This function node performs automated tasks as part of the workflow." }, { "id": "4aac8853-d80e-4201-9f31-7838d18afe71", "name": "Process Install", "type": "n8n-nodes-base.function", "position": [ 800, 320 ], "parameters": { "functionCode": "// Process Install Node\nconst items = $input.all();\nconst item = items[0];\n\n// Get the webhook URL from input\nconst handlerBackUrl = item.json.webhookUrl;\n\n// Get auth data directly from item.json\nconst auth = {\n access_token: item.json.access_token,\n application_token: item.json.application_token,\n domain: item.json.domain\n};\n\nreturn {\n json: {\n handler_back_url: handlerBackUrl,\n CODE: 'LocalExampleBot',\n TYPE: 'B',\n EVENT_MESSAGE_ADD: handlerBackUrl,\n EVENT_WELCOME_MESSAGE: handlerBackUrl,\n EVENT_BOT_DELETE: handlerBackUrl,\n PROPERTIES: {\n NAME: 'Bot',\n LAST_NAME: 'Example',\n COLOR: 'AQUA',\n EMAIL: 'no@example.com',\n PERSONAL_BIRTHDAY: '2020-07-18',\n WORK_POSITION: 'Report on affairs',\n PERSONAL_GENDER: 'M'\n },\n // Use the auth data from item.json\n AUTH: auth.access_token,\n CLIENT_ID: auth.application_token,\n DOMAIN: auth.domain\n }\n};" }, "typeVersion": 1, "notes": "This function node performs automated tasks as part of the workflow." }, { "id": "30922462-255b-4ba6-8167-88aec244fdb1", "name": "Register Bot", "type": "n8n-nodes-base.httpRequest", "position": [ 1000, 320 ], "parameters": { "url": "{{ $env.BASE_URL }}", "method": "POST", "options": {}, "sendBody": true, "bodyParameters": { "parameters": [ { "name": "CODE", "value": "LocalExampleBot" }, { "name": "TYPE", "value": "B" }, { "name": "EVENT_MESSAGE_ADD", "value": "={{$json.handler_back_url}}" }, { "name": "EVENT_WELCOME_MESSAGE", "value": "={{$json.handler_back_url}}" }, { "name": "EVENT_BOT_DELETE", "value": "={{$json.handler_back_url}}" }, { "name": "PROPERTIES", "value": "={{ {\n NAME: 'Bot',\n LAST_NAME: 'Example',\n COLOR: 'AQUA',\n EMAIL: 'no@example.com',\n PERSONAL_BIRTHDAY: '2020-07-18',\n WORK_POSITION: 'Report on affairs',\n PERSONAL_GENDER: 'M'\n} }}" }, { "name": "CLIENT_ID", "value": "={{ $json.CLIENT_ID }}" }, { "name": "CLIENT_SECRET", "value": "={{ $json.AUTH }}" } ] } }, "typeVersion": 4.2, "notes": "This httpRequest node performs automated tasks as part of the workflow." }, { "id": "8c1c7ebf-d5b3-472e-9d98-34cc65ba86ba", "name": "Send Message", "type": "n8n-nodes-base.httpRequest", "position": [ 1000, 0 ], "parameters": { "url": "{{ $env.BASE_URL }}", "method": "POST", "options": {}, "sendBody": true, "bodyParameters": { "parameters": [ { "name": "DIALOG_ID", "value": "={{ $json.DIALOG_ID }}" }, { "name": "MESSAGE", "value": "={{ $json.MESSAGE }}" }, { "name": "AUTH", "value": "={{ $json.AUTH }}" } ] } }, "typeVersion": 4.2, "notes": "This httpRequest node performs automated tasks as part of the workflow." }, { "id": "af0d2b44-53f7-4c4c-9428-d54ebcf41bff", "name": "Send Join Message", "type": "n8n-nodes-base.httpRequest", "position": [ 1000, 160 ], "parameters": { "url": "{{ $env.BASE_URL }}", "method": "POST", "options": {}, "sendBody": true, "bodyParameters": { "parameters": [ { "name": "DIALOG_ID", "value": "={{ $json.DIALOG_ID }}" }, { "name": "MESSAGE", "value": "={{ $json.MESSAGE }}" }, { "name": "AUTH", "value": "={{ $json.AUTH }}" } ] } }, "typeVersion": 4.2, "notes": "This httpRequest node performs automated tasks as part of the workflow." }, { "id": "9110f66d-1c35-44b4-bc73-18f821b50b71", "name": "Process Delete", "type": "n8n-nodes-base.noOp", "position": [ 800, 480 ], "parameters": {}, "typeVersion": 1, "notes": "This noOp node performs automated tasks as part of the workflow." }, { "id": "81a5fc23-47a4-4ef8-bfb4-31593aed12fd", "name": "Success Response", "type": "n8n-nodes-base.respondToWebhook", "position": [ 1200, 0 ], "parameters": { "options": { "responseCode": 200 }, "respondWith": "json", "responseBody": "={\n \"result\": true\n}" }, "typeVersion": 1.1, "notes": "This respondToWebhook node performs automated tasks as part of the workflow." }, { "id": "a19f3b0b-496f-4f3d-a9c2-044356070e32", "name": "Error Response", "type": "n8n-nodes-base.respondToWebhook", "position": [ 400, 160 ], "parameters": { "options": { "responseCode": 401 }, "respondWith": "json", "responseBody": "={{\n \"result\": false,\n \"error\": \"Invalid application token\"\n}}" }, "typeVersion": 1.1, "notes": "This respondToWebhook node performs automated tasks as part of the workflow." } ], "active": true, "pinData": { "Bitrix24 Handler": [ { "json": { "body": { "ts": "1737037713", "event": "ONIMBOTMESSAGEADD", "auth[scope]": "imbot,im", "auth[domain]": "hgap.bitrix24.eu", "auth[status]": "L", "auth[expires]": "1737041313", "auth[user_id]": "256", "data[USER][ID]": "256", "auth[member_id]": "19acdffbcfadf692f61b677d3d824490", "auth[expires_in]": "3600", "data[USER][NAME]": "Java Tech User", "event_handler_id": "126", "auth[access_token]": "YOUR_TOKEN_HERE", "data[USER][GENDER]": "M", "data[USER][IS_BOT]": "N", "auth[refresh_token]": "YOUR_TOKEN_HERE", "auth[client_endpoint]": "{{ $env.WEBHOOK_URL }}", "auth[server_endpoint]": "{{ $env.WEBHOOK_URL }}", "data[BOT][302][scope]": "imbot,im", "data[PARAMS][CHAT_ID]": "6196", "data[PARAMS][MESSAGE]": "Szia!", "data[USER][LAST_NAME]": "Java", "data[BOT][302][BOT_ID]": "302", "data[BOT][302][domain]": "hgap.bitrix24.eu", "data[BOT][302][status]": "L", "data[PARAMS][LANGUAGE]": "en", "data[USER][FIRST_NAME]": "Tech User", "data[USER][IS_NETWORK]": "N", "auth[application_token]": "YOUR_TOKEN_HERE", "data[BOT][302][expires]": "1737041313", "data[BOT][302][user_id]": "302", "data[PARAMS][AUTHOR_ID]": "256", "data[PARAMS][CHAT_TYPE]": "P", "data[PARAMS][DIALOG_ID]": "256", "data[USER][IS_EXTRANET]": "N", "data[BOT][302][BOT_CODE]": "LocalExampleBot", "data[PARAMS][MESSAGE_ID]": "314686", "data[PARAMS][TO_USER_ID]": "302", "data[USER][IS_CONNECTOR]": "N", "data[BOT][302][client_id]": "local.6779636e712043.37129431", "data[BOT][302][member_id]": "19acdffbcfadf692f61b677d3d824490", "data[PARAMS][TEMPLATE_ID]": "09c62e39-23c2-4281-a53f-4a3a76d2cf4a", "data[USER][WORK_POSITION]": "Technical User", "data[BOT][302][expires_in]": "3600", "data[PARAMS][FROM_USER_ID]": "256", "data[PARAMS][MESSAGE_TYPE]": "P", "data[PARAMS][SKIP_COMMAND]": "N", "data[BOT][302][AUTH][scope]": "imbot,im", "data[BOT][302][AUTH][domain]": "hgap.bitrix24.eu", "data[BOT][302][AUTH][status]": "L", "data[BOT][302][access_token]": "YOUR_TOKEN_HERE", "data[PARAMS][SKIP_CONNECTOR]": "N", "data[PARAMS][SKIP_URL_INDEX]": "{{ $env.BASE_URL }}", "data[BOT][302][AUTH][expires]": "1737041313", "data[BOT][302][AUTH][user_id]": "302", "data[BOT][302][refresh_token]": "YOUR_TOKEN_HERE", "data[PARAMS][COMMAND_CONTEXT]": "TEXTAREA", "data[PARAMS][SILENT_CONNECTOR]": "N", "data[BOT][302][AUTH][client_id]": "local.6779636e712043.37129431", "data[BOT][302][AUTH][member_id]": "19acdffbcfadf692f61b677d3d824490", "data[BOT][302][client_endpoint]": "{{ $env.WEBHOOK_URL }}", "data[BOT][302][server_endpoint]": "{{ $env.WEBHOOK_URL }}", "data[BOT][302][AUTH][expires_in]": "3600", "data[BOT][302][application_token]": "YOUR_TOKEN_HERE", "data[PARAMS][IMPORTANT_CONNECTOR]": "N", "data[BOT][302][AUTH][access_token]": "YOUR_TOKEN_HERE", "data[BOT][302][AUTH][refresh_token]": "YOUR_TOKEN_HERE", "data[BOT][302][AUTH][client_endpoint]": "{{ $env.WEBHOOK_URL }}", "data[BOT][302][AUTH][server_endpoint]": "{{ $env.WEBHOOK_URL }}", "data[PARAMS][SKIP_COUNTER_INCREMENTS]": "N", "data[BOT][302][AUTH][application_token]": "YOUR_TOKEN_HERE" }, "query": {}, "params": {}, "headers": { "host": "orpheus-dev.h-gap.hu", "x-real-ip": "3.217.33.54", "user-agent": "Bitrix24 Webhook Engine", "content-type": "application/x-www-form-urlencoded", "content-length": "3711", "accept-encoding": "gzip", "x-forwarded-for": "3.217.33.54", "x-forwarded-proto": "https", "x-forwarded-scheme": "https" }, "webhookUrl": "{{ $env.BASE_URL }}", "executionMode": "production" } } ] }, "settings": { "executionOrder": "v1", "saveManualExecutions": true, "callerPolicy": "workflowsFromSameOwner", "errorWorkflow": null, "timezone": "UTC", "executionTimeout": 3600, "maxExecutions": 1000, "retryOnFail": true, "retryCount": 3, "retryDelay": 1000 }, "versionId": "401b00c7-dc0c-4067-9b27-27dc171cc52e", "connections": { "ddd802bb-0da0-474d-b1e9-74f247e603e0": { "main": [ [ { "node": "error-handler-ddd802bb-0da0-474d-b1e9-74f247e603e0", "type": "main", "index": 0 } ], [ { "node": "error-handler-ddd802bb-0da0-474d-b1e9-74f247e603e0-590ac48b", "type": "main", "index": 0 } ], [ { "node": "error-handler-ddd802bb-0da0-474d-b1e9-74f247e603e0-ca6382b0", "type": "main", "index": 0 } ], [ { "node": "error-handler-ddd802bb-0da0-474d-b1e9-74f247e603e0-b9db5ff0", "type": "main", "index": 0 } ], [ { "node": "error-handler-ddd802bb-0da0-474d-b1e9-74f247e603e0-ff91e73b", "type": "main", "index": 0 } ], [ { "node": "error-handler-ddd802bb-0da0-474d-b1e9-74f247e603e0-c1c8217b", "type": "main", "index": 0 } ], [ { "node": "error-handler-ddd802bb-0da0-474d-b1e9-74f247e603e0-e5c57b2f", "type": "main", "index": 0 } ], [ { "node": "error-handler-ddd802bb-0da0-474d-b1e9-74f247e603e0-7117ae0f", "type": "main", "index": 0 } ], [ { "node": "error-handler-ddd802bb-0da0-474d-b1e9-74f247e603e0-c05a6bbe", "type": "main", "index": 0 } ] ] }, "30922462-255b-4ba6-8167-88aec244fdb1": { "main": [ [ { "node": "error-handler-30922462-255b-4ba6-8167-88aec244fdb1", "type": "main", "index": 0 } ], [ { "node": "error-handler-30922462-255b-4ba6-8167-88aec244fdb1-f868329a", "type": "main", "index": 0 } ], [ { "node": "error-handler-30922462-255b-4ba6-8167-88aec244fdb1-352f8a35", "type": "main", "index": 0 } ], [ { "node": "error-handler-30922462-255b-4ba6-8167-88aec244fdb1-64c38f19", "type": "main", "index": 0 } ], [ { "node": "error-handler-30922462-255b-4ba6-8167-88aec244fdb1-b7db725a", "type": "main", "index": 0 } ], [ { "node": "error-handler-30922462-255b-4ba6-8167-88aec244fdb1-a819a8ab", "type": "main", "index": 0 } ], [ { "node": "error-handler-30922462-255b-4ba6-8167-88aec244fdb1-469e9805", "type": "main", "index": 0 } ], [ { "node": "error-handler-30922462-255b-4ba6-8167-88aec244fdb1-849b06bd", "type": "main", "index": 0 } ], [ { "node": "error-handler-30922462-255b-4ba6-8167-88aec244fdb1-71b48d8c", "type": "main", "index": 0 } ] ] }, "8c1c7ebf-d5b3-472e-9d98-34cc65ba86ba": { "main": [ [ { "node": "error-handler-8c1c7ebf-d5b3-472e-9d98-34cc65ba86ba", "type": "main", "index": 0 } ], [ { "node": "error-handler-8c1c7ebf-d5b3-472e-9d98-34cc65ba86ba-5f9eb711", "type": "main", "index": 0 } ], [ { "node": "error-handler-8c1c7ebf-d5b3-472e-9d98-34cc65ba86ba-3a2615d6", "type": "main", "index": 0 } ], [ { "node": "error-handler-8c1c7ebf-d5b3-472e-9d98-34cc65ba86ba-41f7cc8c", "type": "main", "index": 0 } ], [ { "node": "error-handler-8c1c7ebf-d5b3-472e-9d98-34cc65ba86ba-4f9890f9", "type": "main", "index": 0 } ], [ { "node": "error-handler-8c1c7ebf-d5b3-472e-9d98-34cc65ba86ba-097b2a88", "type": "main", "index": 0 } ], [ { "node": "error-handler-8c1c7ebf-d5b3-472e-9d98-34cc65ba86ba-10a1990f", "type": "main", "index": 0 } ], [ { "node": "error-handler-8c1c7ebf-d5b3-472e-9d98-34cc65ba86ba-b3e48084", "type": "main", "index": 0 } ], [ { "node": "error-handler-8c1c7ebf-d5b3-472e-9d98-34cc65ba86ba-dcb024fe", "type": "main", "index": 0 } ] ] }, "af0d2b44-53f7-4c4c-9428-d54ebcf41bff": { "main": [ [ { "node": "error-handler-af0d2b44-53f7-4c4c-9428-d54ebcf41bff", "type": "main", "index": 0 } ], [ { "node": "error-handler-af0d2b44-53f7-4c4c-9428-d54ebcf41bff-bcfc1e7f", "type": "main", "index": 0 } ], [ { "node": "error-handler-af0d2b44-53f7-4c4c-9428-d54ebcf41bff-6e4eb8e1", "type": "main", "index": 0 } ], [ { "node": "error-handler-af0d2b44-53f7-4c4c-9428-d54ebcf41bff-2fb26e9f", "type": "main", "index": 0 } ], [ { "node": "error-handler-af0d2b44-53f7-4c4c-9428-d54ebcf41bff-16629c1d", "type": "main", "index": 0 } ], [ { "node": "error-handler-af0d2b44-53f7-4c4c-9428-d54ebcf41bff-b093fc33", "type": "main", "index": 0 } ], [ { "node": "error-handler-af0d2b44-53f7-4c4c-9428-d54ebcf41bff-7df1e5a4", "type": "main", "index": 0 } ], [ { "node": "error-handler-af0d2b44-53f7-4c4c-9428-d54ebcf41bff-2755c06e", "type": "main", "index": 0 } ], [ { "node": "error-handler-af0d2b44-53f7-4c4c-9428-d54ebcf41bff-d120c87d", "type": "main", "index": 0 } ] ] }, "81a5fc23-47a4-4ef8-bfb4-31593aed12fd": { "main": [ [ { "node": "error-handler-81a5fc23-47a4-4ef8-bfb4-31593aed12fd", "type": "main", "index": 0 } ], [ { "node": "error-handler-81a5fc23-47a4-4ef8-bfb4-31593aed12fd-4cabe4fd", "type": "main", "index": 0 } ], [ { "node": "error-handler-81a5fc23-47a4-4ef8-bfb4-31593aed12fd-b441b81e", "type": "main", "index": 0 } ], [ { "node": "error-handler-81a5fc23-47a4-4ef8-bfb4-31593aed12fd-a29eb8fc", "type": "main", "index": 0 } ], [ { "node": "error-handler-81a5fc23-47a4-4ef8-bfb4-31593aed12fd-a9f61861", "type": "main", "index": 0 } ], [ { "node": "error-handler-81a5fc23-47a4-4ef8-bfb4-31593aed12fd-be443a86", "type": "main", "index": 0 } ], [ { "node": "error-handler-81a5fc23-47a4-4ef8-bfb4-31593aed12fd-cb4ef38f", "type": "main", "index": 0 } ], [ { "node": "error-handler-81a5fc23-47a4-4ef8-bfb4-31593aed12fd-6fbadc0e", "type": "main", "index": 0 } ], [ { "node": "error-handler-81a5fc23-47a4-4ef8-bfb4-31593aed12fd-0271c4e1", "type": "main", "index": 0 } ] ] }, "a19f3b0b-496f-4f3d-a9c2-044356070e32": { "main": [ [ { "node": "error-handler-a19f3b0b-496f-4f3d-a9c2-044356070e32", "type": "main", "index": 0 } ], [ { "node": "error-handler-a19f3b0b-496f-4f3d-a9c2-044356070e32-6ae742b6", "type": "main", "index": 0 } ], [ { "node": "error-handler-a19f3b0b-496f-4f3d-a9c2-044356070e32-ee99a903", "type": "main", "index": 0 } ], [ { "node": "error-handler-a19f3b0b-496f-4f3d-a9c2-044356070e32-06da0732", "type": "main", "index": 0 } ], [ { "node": "error-handler-a19f3b0b-496f-4f3d-a9c2-044356070e32-98282ca7", "type": "main", "index": 0 } ], [ { "node": "error-handler-a19f3b0b-496f-4f3d-a9c2-044356070e32-a8e4ab43", "type": "main", "index": 0 } ], [ { "node": "error-handler-a19f3b0b-496f-4f3d-a9c2-044356070e32-21e39752", "type": "main", "index": 0 } ], [ { "node": "error-handler-a19f3b0b-496f-4f3d-a9c2-044356070e32-7b2bb87a", "type": "main", "index": 0 } ], [ { "node": "error-handler-a19f3b0b-496f-4f3d-a9c2-044356070e32-7b481181", "type": "main", "index": 0 } ] ] } }, "description": "Automated workflow: Bitrix24 Chatbot Application Workflow example with Webhook Integration. This workflow processes data and performs automated tasks.", "notes": "Excellent quality workflow: Bitrix24 Chatbot Application Workflow example with Webhook Integration. This workflow has been optimized for production use with comprehensive error handling, security, and documentation." }