Create Workflow Public
curl --request POST \
--url https://api.example.com/v1/workflows \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"name": "<string>",
"definition": {},
"error_handler": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"meta": {
"tags": [],
"icon": "<string>",
"log_sync_sheet": {
"name": "<string>",
"id": "<string>",
"time_created": "<string>"
},
"columns": [
{
"name": "<string>",
"visible": true
}
],
"spreadsheet": {
"name": "<string>",
"id": "<string>",
"timestamp": "<string>",
"url": "<string>"
},
"chatflow_settings": {},
"template_id": "<string>",
"variables": [
{}
]
}
}
'import requests
url = "https://api.example.com/v1/workflows"
payload = {
"name": "<string>",
"definition": {},
"error_handler": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"meta": {
"tags": [],
"icon": "<string>",
"log_sync_sheet": {
"name": "<string>",
"id": "<string>",
"time_created": "<string>"
},
"columns": [
{
"name": "<string>",
"visible": True
}
],
"spreadsheet": {
"name": "<string>",
"id": "<string>",
"timestamp": "<string>",
"url": "<string>"
},
"chatflow_settings": {},
"template_id": "<string>",
"variables": [{}]
}
}
headers = {
"X-API-Key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'X-API-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
name: '<string>',
definition: {},
error_handler: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
meta: {
tags: [],
icon: '<string>',
log_sync_sheet: {name: '<string>', id: '<string>', time_created: '<string>'},
columns: [{name: '<string>', visible: true}],
spreadsheet: {name: '<string>', id: '<string>', timestamp: '<string>', url: '<string>'},
chatflow_settings: {},
template_id: '<string>',
variables: [{}]
}
})
};
fetch('https://api.example.com/v1/workflows', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.example.com/v1/workflows",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'name' => '<string>',
'definition' => [
],
'error_handler' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'meta' => [
'tags' => [
],
'icon' => '<string>',
'log_sync_sheet' => [
'name' => '<string>',
'id' => '<string>',
'time_created' => '<string>'
],
'columns' => [
[
'name' => '<string>',
'visible' => true
]
],
'spreadsheet' => [
'name' => '<string>',
'id' => '<string>',
'timestamp' => '<string>',
'url' => '<string>'
],
'chatflow_settings' => [
],
'template_id' => '<string>',
'variables' => [
[
]
]
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"X-API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/v1/workflows"
payload := strings.NewReader("{\n \"name\": \"<string>\",\n \"definition\": {},\n \"error_handler\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"meta\": {\n \"tags\": [],\n \"icon\": \"<string>\",\n \"log_sync_sheet\": {\n \"name\": \"<string>\",\n \"id\": \"<string>\",\n \"time_created\": \"<string>\"\n },\n \"columns\": [\n {\n \"name\": \"<string>\",\n \"visible\": true\n }\n ],\n \"spreadsheet\": {\n \"name\": \"<string>\",\n \"id\": \"<string>\",\n \"timestamp\": \"<string>\",\n \"url\": \"<string>\"\n },\n \"chatflow_settings\": {},\n \"template_id\": \"<string>\",\n \"variables\": [\n {}\n ]\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("X-API-Key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.example.com/v1/workflows")
.header("X-API-Key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"name\": \"<string>\",\n \"definition\": {},\n \"error_handler\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"meta\": {\n \"tags\": [],\n \"icon\": \"<string>\",\n \"log_sync_sheet\": {\n \"name\": \"<string>\",\n \"id\": \"<string>\",\n \"time_created\": \"<string>\"\n },\n \"columns\": [\n {\n \"name\": \"<string>\",\n \"visible\": true\n }\n ],\n \"spreadsheet\": {\n \"name\": \"<string>\",\n \"id\": \"<string>\",\n \"timestamp\": \"<string>\",\n \"url\": \"<string>\"\n },\n \"chatflow_settings\": {},\n \"template_id\": \"<string>\",\n \"variables\": [\n {}\n ]\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/v1/workflows")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-API-Key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"name\": \"<string>\",\n \"definition\": {},\n \"error_handler\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"meta\": {\n \"tags\": [],\n \"icon\": \"<string>\",\n \"log_sync_sheet\": {\n \"name\": \"<string>\",\n \"id\": \"<string>\",\n \"time_created\": \"<string>\"\n },\n \"columns\": [\n {\n \"name\": \"<string>\",\n \"visible\": true\n }\n ],\n \"spreadsheet\": {\n \"name\": \"<string>\",\n \"id\": \"<string>\",\n \"timestamp\": \"<string>\",\n \"url\": \"<string>\"\n },\n \"chatflow_settings\": {},\n \"template_id\": \"<string>\",\n \"variables\": [\n {}\n ]\n }\n}"
response = http.request(request)
puts response.read_body{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"group_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"definition": {},
"workflow_hash": "<string>",
"meta": {
"tags": [],
"icon": "<string>",
"log_sync_sheet": {
"name": "<string>",
"id": "<string>",
"time_created": "<string>"
},
"columns": [
{
"name": "<string>",
"visible": true
}
],
"spreadsheet": {
"name": "<string>",
"id": "<string>",
"timestamp": "<string>",
"url": "<string>"
},
"chatflow_settings": {},
"template_id": "<string>",
"variables": [
{}
]
},
"settings": {
"pii_banner": "",
"pii_info": "",
"pii_lock": false,
"pii_anonimization": [
{
"value": "PERSON",
"label": "Name"
},
{
"value": "EMAIL_ADDRESS",
"label": "Email"
},
{
"value": "PHONE_NUMBER",
"label": "Phone Number"
},
{
"value": "CREDIT_CARD",
"label": "Credit Card"
}
],
"divider1": "",
"guardrail_info": "",
"guardrail_lock": false,
"guardrail_latency_banner": "",
"violence_and_hate": {
"value": "Off",
"context": ""
},
"sexual_content": {
"value": "Off",
"context": ""
},
"guns_and_weapons": {
"value": "Off",
"context": ""
},
"suicide": {
"value": "Off",
"context": ""
},
"crime": {
"value": "Off",
"context": ""
},
"toxicity": {
"value": "Off",
"context": ""
},
"bias": {
"value": "Off",
"context": ""
},
"profanity": {
"value": "Off",
"context": ""
},
"guardrails_scan_output": false,
"guardrails_output_mode": "post_stream",
"divider2": "",
"guardrail_action": {
"value": "fail",
"label": "Fail/block run"
},
"guardrail_action_replace": "",
"guardrail_action_human": "",
"block_after_violations": 0,
"block_message": "This conversation has been locked due to repeated safety violations. Please start a new conversation.",
"divider3": "",
"prompt_defense": "",
"prompt_lock": false,
"jailbreak": false,
"prompt_injection": false,
"context_leak": false,
"auto_model_pick": false,
"auto_model_preference": "cost",
"model": [
"preset:cost"
],
"parameter_preset": "default",
"intro": "",
"basic_params_section": "",
"max_tokens": 64000,
"temperature": 0.7,
"top_p": 1,
"top_k": 40,
"timeout": 120,
"divider_7": "",
"penalty_section": "",
"presence_penalty": 0.3,
"frequency_penalty": 0.6,
"stop_sequences": [],
"divider_8": "",
"reasoning_section": "",
"enable_reasoning": true,
"reasoning_effort": "Low",
"divider": "",
"reliability_section": "",
"max_retries_per_model": 3,
"retry_on_status_codes": [
429,
500,
502,
503,
504
],
"datacenter_fallback": true,
"exclude_user_identity_from_prompt": false,
"enable_prompt_caching": true,
"protect_instructions_in_preview": false,
"agentflow_enabled": true,
"usage_limits_section": "",
"usage_limits_maximum_request": 1000,
"usage_limits_maximum_tokens": 2000000,
"usage_limits_max_messages": 100,
"usage_limits_agent_timeout": 120,
"divider_11": "",
"compaction_enabled": true,
"compaction_strategy": "auto",
"compaction_threshold": 0.75,
"compaction_tool_enabled": false,
"tool_calling_section": "",
"parallel_tool_calls": true,
"tool_timeout": 15,
"agent_flow_id": "<string>",
"is_coworker": true,
"preset_selector": "<string>",
"introductory_message": [
{
"text": "<string>",
"definition": {
"type": "doc",
"content": []
}
}
],
"persona": [
{
"text": "<string>",
"definition": {
"type": "doc",
"content": []
}
}
],
"tone": [
{
"text": "<string>",
"definition": {
"type": "doc",
"content": []
}
}
],
"extra_instructions": {},
"tools": [],
"mcp_servers": [],
"skills_enabled": true,
"convert_unsupported_files_to_text": true,
"skills": [],
"subagents_enabled": false,
"subagents": [],
"subagents_instructions": [
{
"text": "<string>",
"definition": {
"type": "doc",
"content": []
}
}
],
"subagents_model": [
"preset:cost"
],
"guidelines_enabled": false,
"guidelines": [],
"glossary": [],
"memories": [],
"hidden_tools": [
"todos_read_todos",
"todos_add_todo",
"todos_write_todos",
"todos_update_todo_status",
"todos_remove_todo"
]
},
"last_updated_at": "2023-11-07T05:31:56Z",
"last_run_at": "2023-11-07T05:31:56Z",
"created_at": "2023-11-07T05:31:56Z",
"deleted_at": "2023-11-07T05:31:56Z",
"runs_count": 123,
"author_name": "<string>",
"description": "<string>",
"saved": true,
"error_handler": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"is_app_published": true,
"app_settings_v2": {
"is_active": false,
"version_id": "<string>",
"extra_settings": {},
"published_at": "2023-11-07T05:31:56Z"
},
"flow_version": "v1"
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Workflows
Create workflow public
POST
/
v1
/
workflows
Create Workflow Public
curl --request POST \
--url https://api.example.com/v1/workflows \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"name": "<string>",
"definition": {},
"error_handler": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"meta": {
"tags": [],
"icon": "<string>",
"log_sync_sheet": {
"name": "<string>",
"id": "<string>",
"time_created": "<string>"
},
"columns": [
{
"name": "<string>",
"visible": true
}
],
"spreadsheet": {
"name": "<string>",
"id": "<string>",
"timestamp": "<string>",
"url": "<string>"
},
"chatflow_settings": {},
"template_id": "<string>",
"variables": [
{}
]
}
}
'import requests
url = "https://api.example.com/v1/workflows"
payload = {
"name": "<string>",
"definition": {},
"error_handler": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"meta": {
"tags": [],
"icon": "<string>",
"log_sync_sheet": {
"name": "<string>",
"id": "<string>",
"time_created": "<string>"
},
"columns": [
{
"name": "<string>",
"visible": True
}
],
"spreadsheet": {
"name": "<string>",
"id": "<string>",
"timestamp": "<string>",
"url": "<string>"
},
"chatflow_settings": {},
"template_id": "<string>",
"variables": [{}]
}
}
headers = {
"X-API-Key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'X-API-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
name: '<string>',
definition: {},
error_handler: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
meta: {
tags: [],
icon: '<string>',
log_sync_sheet: {name: '<string>', id: '<string>', time_created: '<string>'},
columns: [{name: '<string>', visible: true}],
spreadsheet: {name: '<string>', id: '<string>', timestamp: '<string>', url: '<string>'},
chatflow_settings: {},
template_id: '<string>',
variables: [{}]
}
})
};
fetch('https://api.example.com/v1/workflows', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.example.com/v1/workflows",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'name' => '<string>',
'definition' => [
],
'error_handler' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'meta' => [
'tags' => [
],
'icon' => '<string>',
'log_sync_sheet' => [
'name' => '<string>',
'id' => '<string>',
'time_created' => '<string>'
],
'columns' => [
[
'name' => '<string>',
'visible' => true
]
],
'spreadsheet' => [
'name' => '<string>',
'id' => '<string>',
'timestamp' => '<string>',
'url' => '<string>'
],
'chatflow_settings' => [
],
'template_id' => '<string>',
'variables' => [
[
]
]
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"X-API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/v1/workflows"
payload := strings.NewReader("{\n \"name\": \"<string>\",\n \"definition\": {},\n \"error_handler\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"meta\": {\n \"tags\": [],\n \"icon\": \"<string>\",\n \"log_sync_sheet\": {\n \"name\": \"<string>\",\n \"id\": \"<string>\",\n \"time_created\": \"<string>\"\n },\n \"columns\": [\n {\n \"name\": \"<string>\",\n \"visible\": true\n }\n ],\n \"spreadsheet\": {\n \"name\": \"<string>\",\n \"id\": \"<string>\",\n \"timestamp\": \"<string>\",\n \"url\": \"<string>\"\n },\n \"chatflow_settings\": {},\n \"template_id\": \"<string>\",\n \"variables\": [\n {}\n ]\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("X-API-Key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.example.com/v1/workflows")
.header("X-API-Key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"name\": \"<string>\",\n \"definition\": {},\n \"error_handler\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"meta\": {\n \"tags\": [],\n \"icon\": \"<string>\",\n \"log_sync_sheet\": {\n \"name\": \"<string>\",\n \"id\": \"<string>\",\n \"time_created\": \"<string>\"\n },\n \"columns\": [\n {\n \"name\": \"<string>\",\n \"visible\": true\n }\n ],\n \"spreadsheet\": {\n \"name\": \"<string>\",\n \"id\": \"<string>\",\n \"timestamp\": \"<string>\",\n \"url\": \"<string>\"\n },\n \"chatflow_settings\": {},\n \"template_id\": \"<string>\",\n \"variables\": [\n {}\n ]\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/v1/workflows")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-API-Key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"name\": \"<string>\",\n \"definition\": {},\n \"error_handler\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"meta\": {\n \"tags\": [],\n \"icon\": \"<string>\",\n \"log_sync_sheet\": {\n \"name\": \"<string>\",\n \"id\": \"<string>\",\n \"time_created\": \"<string>\"\n },\n \"columns\": [\n {\n \"name\": \"<string>\",\n \"visible\": true\n }\n ],\n \"spreadsheet\": {\n \"name\": \"<string>\",\n \"id\": \"<string>\",\n \"timestamp\": \"<string>\",\n \"url\": \"<string>\"\n },\n \"chatflow_settings\": {},\n \"template_id\": \"<string>\",\n \"variables\": [\n {}\n ]\n }\n}"
response = http.request(request)
puts response.read_body{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"group_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"definition": {},
"workflow_hash": "<string>",
"meta": {
"tags": [],
"icon": "<string>",
"log_sync_sheet": {
"name": "<string>",
"id": "<string>",
"time_created": "<string>"
},
"columns": [
{
"name": "<string>",
"visible": true
}
],
"spreadsheet": {
"name": "<string>",
"id": "<string>",
"timestamp": "<string>",
"url": "<string>"
},
"chatflow_settings": {},
"template_id": "<string>",
"variables": [
{}
]
},
"settings": {
"pii_banner": "",
"pii_info": "",
"pii_lock": false,
"pii_anonimization": [
{
"value": "PERSON",
"label": "Name"
},
{
"value": "EMAIL_ADDRESS",
"label": "Email"
},
{
"value": "PHONE_NUMBER",
"label": "Phone Number"
},
{
"value": "CREDIT_CARD",
"label": "Credit Card"
}
],
"divider1": "",
"guardrail_info": "",
"guardrail_lock": false,
"guardrail_latency_banner": "",
"violence_and_hate": {
"value": "Off",
"context": ""
},
"sexual_content": {
"value": "Off",
"context": ""
},
"guns_and_weapons": {
"value": "Off",
"context": ""
},
"suicide": {
"value": "Off",
"context": ""
},
"crime": {
"value": "Off",
"context": ""
},
"toxicity": {
"value": "Off",
"context": ""
},
"bias": {
"value": "Off",
"context": ""
},
"profanity": {
"value": "Off",
"context": ""
},
"guardrails_scan_output": false,
"guardrails_output_mode": "post_stream",
"divider2": "",
"guardrail_action": {
"value": "fail",
"label": "Fail/block run"
},
"guardrail_action_replace": "",
"guardrail_action_human": "",
"block_after_violations": 0,
"block_message": "This conversation has been locked due to repeated safety violations. Please start a new conversation.",
"divider3": "",
"prompt_defense": "",
"prompt_lock": false,
"jailbreak": false,
"prompt_injection": false,
"context_leak": false,
"auto_model_pick": false,
"auto_model_preference": "cost",
"model": [
"preset:cost"
],
"parameter_preset": "default",
"intro": "",
"basic_params_section": "",
"max_tokens": 64000,
"temperature": 0.7,
"top_p": 1,
"top_k": 40,
"timeout": 120,
"divider_7": "",
"penalty_section": "",
"presence_penalty": 0.3,
"frequency_penalty": 0.6,
"stop_sequences": [],
"divider_8": "",
"reasoning_section": "",
"enable_reasoning": true,
"reasoning_effort": "Low",
"divider": "",
"reliability_section": "",
"max_retries_per_model": 3,
"retry_on_status_codes": [
429,
500,
502,
503,
504
],
"datacenter_fallback": true,
"exclude_user_identity_from_prompt": false,
"enable_prompt_caching": true,
"protect_instructions_in_preview": false,
"agentflow_enabled": true,
"usage_limits_section": "",
"usage_limits_maximum_request": 1000,
"usage_limits_maximum_tokens": 2000000,
"usage_limits_max_messages": 100,
"usage_limits_agent_timeout": 120,
"divider_11": "",
"compaction_enabled": true,
"compaction_strategy": "auto",
"compaction_threshold": 0.75,
"compaction_tool_enabled": false,
"tool_calling_section": "",
"parallel_tool_calls": true,
"tool_timeout": 15,
"agent_flow_id": "<string>",
"is_coworker": true,
"preset_selector": "<string>",
"introductory_message": [
{
"text": "<string>",
"definition": {
"type": "doc",
"content": []
}
}
],
"persona": [
{
"text": "<string>",
"definition": {
"type": "doc",
"content": []
}
}
],
"tone": [
{
"text": "<string>",
"definition": {
"type": "doc",
"content": []
}
}
],
"extra_instructions": {},
"tools": [],
"mcp_servers": [],
"skills_enabled": true,
"convert_unsupported_files_to_text": true,
"skills": [],
"subagents_enabled": false,
"subagents": [],
"subagents_instructions": [
{
"text": "<string>",
"definition": {
"type": "doc",
"content": []
}
}
],
"subagents_model": [
"preset:cost"
],
"guidelines_enabled": false,
"guidelines": [],
"glossary": [],
"memories": [],
"hidden_tools": [
"todos_read_todos",
"todos_add_todo",
"todos_write_todos",
"todos_update_todo_status",
"todos_remove_todo"
]
},
"last_updated_at": "2023-11-07T05:31:56Z",
"last_run_at": "2023-11-07T05:31:56Z",
"created_at": "2023-11-07T05:31:56Z",
"deleted_at": "2023-11-07T05:31:56Z",
"runs_count": 123,
"author_name": "<string>",
"description": "<string>",
"saved": true,
"error_handler": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"is_app_published": true,
"app_settings_v2": {
"is_active": false,
"version_id": "<string>",
"extra_settings": {},
"published_at": "2023-11-07T05:31:56Z"
},
"flow_version": "v1"
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Authorizations
Body
application/json
Response
Successful Response
Available options:
flow, agent_flow, handler, ingestion, inbox_process, inbox_filtering, inbox_extraction, task_automation Show child attributes
Show child attributes
- ChatflowSettingsConfig
- Settings
Show child attributes
Show child attributes
Show child attributes
Show child attributes
⌘I