Config
POST/api/config/db/delete
curl -s -X POST "https://alphieui.com/api/config/db/delete" \
-H "Authorization: Bearer $TOKEN" \
-H "Content-Type: application/json" \
-d '{}'
GET/api/config/{kind}
curl -s -X GET "https://alphieui.com/api/config/{kind}" \
-H "Authorization: Bearer $TOKEN"
PUT/api/config/{kind}
curl -s -X PUT "https://alphieui.com/api/config/{kind}" \
-H "Authorization: Bearer $TOKEN" \
-H "Content-Type: application/json" \
-d '{}'
POST/api/config/{kind}/delete
curl -s -X POST "https://alphieui.com/api/config/{kind}/delete" \
-H "Authorization: Bearer $TOKEN" \
-H "Content-Type: application/json" \
-d '{}'
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.