Skip to main content
Automation endpoints control rule-driven actions and status transitions.

Endpoints in this guide

  • GET /api/automations
  • POST /api/automations
  • PUT /api/automations/{id}
  • PATCH /api/automations/{id}/preference
  • DELETE /api/automations/{id}

Create automation

curl -X POST https://your-instance.example.com/api/automations \
  -H "Authorization: Bearer <token>" \
  -H "Content-Type: application/json" \
  -d '{"name":"Auto-resolve old threads","enabled":true}'