Target / Hosts
GET/api/lookups/target_hosts
curl -s -X GET "https://alphieui.com/api/lookups/target_hosts" \
-H "Authorization: Bearer $TOKEN"
Hosts
GET/api/admin/hosts
curl -s -X GET "https://alphieui.com/api/admin/hosts" \
-H "Authorization: Bearer $TOKEN"
POST/api/admin/hosts
curl -s -X POST "https://alphieui.com/api/admin/hosts" \
-H "Authorization: Bearer $TOKEN" \
-H "Content-Type: application/json" \
-d '{}'
DELETE/api/admin/hosts/{host_id}
curl -s -X DELETE "https://alphieui.com/api/admin/hosts/{host_id}" \
-H "Authorization: Bearer $TOKEN"
GET/api/admin/hosts/{host_id}
curl -s -X GET "https://alphieui.com/api/admin/hosts/{host_id}" \
-H "Authorization: Bearer $TOKEN"
PUT/api/admin/hosts/{host_id}
curl -s -X PUT "https://alphieui.com/api/admin/hosts/{host_id}" \
-H "Authorization: Bearer $TOKEN" \
-H "Content-Type: application/json" \
-d '{}'
Targets
GET/api/admin/targets
curl -s -X GET "https://alphieui.com/api/admin/targets" \
-H "Authorization: Bearer $TOKEN"
POST/api/admin/targets
curl -s -X POST "https://alphieui.com/api/admin/targets" \
-H "Authorization: Bearer $TOKEN" \
-H "Content-Type: application/json" \
-d '{}'
DELETE/api/admin/targets/{target_id}
curl -s -X DELETE "https://alphieui.com/api/admin/targets/{target_id}" \
-H "Authorization: Bearer $TOKEN"
GET/api/admin/targets/{target_id}
curl -s -X GET "https://alphieui.com/api/admin/targets/{target_id}" \
-H "Authorization: Bearer $TOKEN"
PUT/api/admin/targets/{target_id}
curl -s -X PUT "https://alphieui.com/api/admin/targets/{target_id}" \
-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.