curl -X PATCH "https://your-collabase.ch/api/v1/automation/auto-abc123/toggle" \
-H "Authorization: Bearer cba_live_..." \
-H "Content-Type: application/json" \
-d '{ "isEnabled": false }'
{ "id": "auto-abc123", "isEnabled": false }
Enable or disable an automation.
curl -X PATCH "https://your-collabase.ch/api/v1/automation/auto-abc123/toggle" \
-H "Authorization: Bearer cba_live_..." \
-H "Content-Type: application/json" \
-d '{ "isEnabled": false }'
{ "id": "auto-abc123", "isEnabled": false }
true to enable, false to disable.curl -X PATCH "https://your-collabase.ch/api/v1/automation/auto-abc123/toggle" \
-H "Authorization: Bearer cba_live_..." \
-H "Content-Type: application/json" \
-d '{ "isEnabled": false }'
{ "id": "auto-abc123", "isEnabled": false }
Was this page helpful?