Workflows
Update a workflow
Updates workflow fields like name and authentication requirement
post/workflows/update
Request body
Example request
{
"name": "Updated Workflow Name",
"autoSaveEnabled": true,
"timeoutMs": 3600000,
"shouldSelfHeal": true,
"webhooks": [
{
"id": "workflow_webhook_url_01h2x3y4z5a6b7c8d9e0f1g2h3",
"url": "https://example.com/webhook1"
},
{
"url": "https://example.com/webhook2"
}
],
"operatingSystem": "Windows",
"fingerprintBrowser": "Safari",
"maxConcurrentSessions": 10,
"useLoginDetection": true,
"retryConfiguration": {
"delay": 1000,
"retryCount": 3
},
"blockRetryCount": 3,
"blockBackoffStrategy": "exponential",
"isOptimizedForComputerVision": true,
"waitBetweenBlocksMs": 1000,
"tagIds": [
"tag_01h2x3y4z5a6b7c8d9e0f1g2h3",
"tag_01h2x3y4z5a6b7c8d9e0f1g2h4"
],
"workflowGroupId": "workflow_group_01h2x3y4z5a6b7c8d9e0f1g2h3",
"executionMode": "standard",
"agentModeKaizenVersion": "Full"
}Response
Workflow updated successfully
Example response
{
"timeoutMs": 3600000,
"shouldSelfHeal": true,
"maxConcurrentSessions": 10,
"useLoginDetection": true,
"operatingSystem": "Windows",
"fingerprintBrowser": "Safari",
"blockRetryCount": 3,
"blockBackoffStrategy": "exponential",
"isOptimizedForComputerVision": true,
"waitBetweenBlocksMs": 1000,
"executionMode": "standard",
"agentModeKaizenVersion": "Full",
"message": "Workflow updated successfully"
}Changes
No recorded changes to this endpoint across all 1 revision of this API.