Runner
GET/api/runners/metrics
curl -s -X GET "https://alphieui.com/api/runners/metrics" \
-H "Authorization: Bearer $TOKEN"
DELETE/api/runners/{runner_id}
curl -s -X DELETE "https://alphieui.com/api/runners/{runner_id}" \
-H "Authorization: Bearer $TOKEN"
GET/api/runners/{runner_id}
curl -s -X GET "https://alphieui.com/api/runners/{runner_id}" \
-H "Authorization: Bearer $TOKEN"
PUT/api/runners/{runner_id}
curl -s -X PUT "https://alphieui.com/api/runners/{runner_id}" \
-H "Authorization: Bearer $TOKEN" \
-H "Content-Type: application/json" \
-d '{}'
POST/api/runners/{runner_id}/enabled
curl -s -X POST "https://alphieui.com/api/runners/{runner_id}/enabled" \
-H "Authorization: Bearer $TOKEN" \
-H "Content-Type: application/json" \
-d '{}'
GET/api/runners/{runner_id}/health
curl -s -X GET "https://alphieui.com/api/runners/{runner_id}/health" \
-H "Authorization: Bearer $TOKEN"
POST/api/runners/{runner_id}/probe
curl -s -X POST "https://alphieui.com/api/runners/{runner_id}/probe" \
-H "Authorization: Bearer $TOKEN" \
-H "Content-Type: application/json" \
-d '{}'
GET/api/runners/{runner_id}/sync_status
curl -s -X GET "https://alphieui.com/api/runners/{runner_id}/sync_status" \
-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.