Profile
GET/api/profile.html
curl -s -X GET "https://alphieui.com/api/profile.html" \
-H "Authorization: Bearer $TOKEN"
POST/api/admin/change-password
curl -s -X POST "https://alphieui.com/api/admin/change-password" \
-H "Authorization: Bearer $TOKEN" \
-H "Content-Type: application/json" \
-d '{}'
POST/api/admin/regenerate-secret
curl -s -X POST "https://alphieui.com/api/admin/regenerate-secret" \
-H "Authorization: Bearer $TOKEN" \
-H "Content-Type: application/json" \
-d '{}'
POST/api/admin/tokens
curl -s -X POST "https://alphieui.com/api/admin/tokens" \
-H "Authorization: Bearer $TOKEN" \
-H "Content-Type: application/json" \
-d '{}'
GET/api/admin/tokens
curl -s -X GET "https://alphieui.com/api/admin/tokens" \
-H "Authorization: Bearer $TOKEN"
DELETE/api/admin/tokens/{token_id}
curl -s -X DELETE "https://alphieui.com/api/admin/tokens/{token_id}" \
-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.