Skip to main content
PATCH
/
api
/
v1
/
automation
/
{automationId}
curl -X PATCH "https://your-collabase.ch/api/v1/automation/auto-abc123" \
  -H "Authorization: Bearer cba_live_..." \
  -H "Content-Type: application/json" \
  -d '{ "name": "Notify on Critical Test Failure" }'
{
  "id": "auto-abc123",
  "name": "Notify on Critical Test Failure",
  "isEnabled": true
}

Path parameters

automationId
string
required
The automation to update.

Request body

All fields are optional. Send only the fields you want to change.
name
string
New name. 1–200 characters.
description
string
New description.
flowGraph
object
Replace the entire node graph.
triggerConfig
object
Replace the trigger configuration.
curl -X PATCH "https://your-collabase.ch/api/v1/automation/auto-abc123" \
  -H "Authorization: Bearer cba_live_..." \
  -H "Content-Type: application/json" \
  -d '{ "name": "Notify on Critical Test Failure" }'
{
  "id": "auto-abc123",
  "name": "Notify on Critical Test Failure",
  "isEnabled": true
}