1) Confirm the OpenAPI spec loads:
curl -sS https://api.eventium.ai/api/openapi.json -o openapi.json
curl -sS https://api.eventium.ai/api/openapi.yaml -o openapi.yaml
2) Send a TPS command through the gateway (X-Api-Key shown):
Linux/macOS (bash/zsh)
curl -sS https://api.eventium.ai/demo/v1/Metis/tps \\
-H "Content-Type: application/json" \\
-H "X-Api-Key: TITAN-REPLACE-ME" \\
-d '{"service":"AP_Chat","target":{"user":"USER","agent":"AGENT","domain":"DOMAIN","zone":"ZONE","bank":"BANK"},"content":"Hello"}'
Windows (CMD)
curl -sS https://api.eventium.ai/demo/v1/Metis/tps ^
-H "Content-Type: application/json" ^
-H "X-Api-Key: TITAN-REPLACE-ME" ^
-d "{\"service\":\"AP_Chat\",\"target\":{\"user\":\"USER\",\"agent\":\"AGENT\",\"domain\":\"DOMAIN\",\"zone\":\"ZONE\",\"bank\":\"BANK\"},\"content\":\"Hello\"}"
Windows (PowerShell)
curl -sS https://api.eventium.ai/demo/v1/Metis/tps `
-H "Content-Type: application/json" `
-H "X-Api-Key: TITAN-REPLACE-ME" `
-d '{"service":"AP_Chat","target":{"user":"USER","agent":"AGENT","domain":"DOMAIN","zone":"ZONE","bank":"BANK"},"content":"Hello"}'