Automation Sets
GET/api/admin/automation-sets
curl -s -X GET "https://alphieui.com/api/admin/automation-sets" \
-H "Authorization: Bearer $TOKEN"
POST/api/admin/automation-sets
curl -s -X POST "https://alphieui.com/api/admin/automation-sets" \
-H "Authorization: Bearer $TOKEN" \
-H "Content-Type: application/json" \
-d '{}'
DELETE/api/admin/automation-sets/{id}
curl -s -X DELETE "https://alphieui.com/api/admin/automation-sets/{id}" \
-H "Authorization: Bearer $TOKEN"
GET/api/admin/automation-sets/{id}
curl -s -X GET "https://alphieui.com/api/admin/automation-sets/{id}" \
-H "Authorization: Bearer $TOKEN"
PUT/api/admin/automation-sets/{id}
curl -s -X PUT "https://alphieui.com/api/admin/automation-sets/{id}" \
-H "Authorization: Bearer $TOKEN" \
-H "Content-Type: application/json" \
-d '{}'
POST/api/admin/automation-sets/{id}/sync
curl -s -X POST "https://alphieui.com/api/admin/automation-sets/{id}/sync" \
-H "Authorization: Bearer $TOKEN" \
-H "Content-Type: application/json" \
-d '{}'
GET/api/lookups/automation_sets
curl -s -X GET "https://alphieui.com/api/lookups/automation_sets" \
-H "Authorization: Bearer $TOKEN"
Notes
- All endpoints require authentication unless noted otherwise.
- Most write operations accept and return JSON.
- Timestamps are returned in server-local time strings for UI convenience.
- Long-running operations (runs/pipelines) expose
/file-logand/file-log/tailfor streaming logs.