List entities
This template requires a real tenant base URL and access token supplied through an authorized engagement.
curl --request GET \
--url "$AEVAH_API_BASE/entities?limit=25" \
--header "Authorization: Bearer $AEVAH_ACCESS_TOKEN" \
--header "Accept: application/json"Start a workflow
Mutations require tenant authorization, an execution scope, policy approval, and an idempotency key.
curl --request POST \
--url "$AEVAH_API_BASE/workflows/wf_123" \
--header "Authorization: Bearer $AEVAH_ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--header "Idempotency-Key: replace-with-a-unique-client-key" \
--data '{"input":{"entityId":"ent_123"},"reason":"Review operational exception"}'
