Welcome to Theo Docs — the AI orchestration API.
Publish a custom event to trigger workflows and integrations.
cURL
curl --request POST \ --url https://api.example.com/api/v1/events \ --header 'Content-Type: application/json' \ --data ' { "orgId": "<string>", "eventType": "<string>", "payload": "<any>", "sourceConnector": "<string>" } '
"claim.created"
"policy.renewed"
curl -X POST https://hitheo.ai/api/v1/events \ -H "Authorization: Bearer $THEO_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "orgId": "org_abc123", "eventType": "claim.created", "payload": { "claimId": "CLM-001", "amount": 15000, "type": "auto" } }'
id
POST /api/v1/events
Was this page helpful?