Body
application/json
Request body for listing workflows
Response
Workflows retrieved successfully
List of workflows
curl --request POST \
--url https://api.kaizenautomation.com/workflows/list \
--header 'Content-Type: application/json' \
--data '{
"search": "<string>",
"tagFilters": [
"<string>"
]
}'{
"workflows": [
{
"id": "<string>",
"name": "<string>",
"isAuthenticationRequired": true,
"autoSaveEnabled": true,
"timeoutMs": 3600000,
"shouldPauseOnError": false,
"shouldSelfHeal": true,
"shouldSaveResultFile": false,
"maxConcurrentSessions": 10,
"webhookUrls": [
"<string>"
],
"blocks": [
"<any>"
],
"model": "gpt-4.1-mini-2025-04-14",
"useProxy": false,
"operatingSystem": "Windows",
"knowledgeBase": "Company information and guidelines...",
"useLoginDetection": true,
"blockRetryCount": 3,
"blockBackoffStrategy": "exponential",
"isOptimizedForComputerVision": true,
"tags": [
{
"id": "<string>",
"text": "<string>",
"tagHexColor": "<string>",
"organizationId": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>"
}
]
}
]
}Retrieves all workflows for an organization with optional filtering by name or external ID
curl --request POST \
--url https://api.kaizenautomation.com/workflows/list \
--header 'Content-Type: application/json' \
--data '{
"search": "<string>",
"tagFilters": [
"<string>"
]
}'{
"workflows": [
{
"id": "<string>",
"name": "<string>",
"isAuthenticationRequired": true,
"autoSaveEnabled": true,
"timeoutMs": 3600000,
"shouldPauseOnError": false,
"shouldSelfHeal": true,
"shouldSaveResultFile": false,
"maxConcurrentSessions": 10,
"webhookUrls": [
"<string>"
],
"blocks": [
"<any>"
],
"model": "gpt-4.1-mini-2025-04-14",
"useProxy": false,
"operatingSystem": "Windows",
"knowledgeBase": "Company information and guidelines...",
"useLoginDetection": true,
"blockRetryCount": 3,
"blockBackoffStrategy": "exponential",
"isOptimizedForComputerVision": true,
"tags": [
{
"id": "<string>",
"text": "<string>",
"tagHexColor": "<string>",
"organizationId": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>"
}
]
}
]
}Request body for listing workflows
Workflows retrieved successfully
List of workflows
Show child attributes