Welcome to Theo Docs — the AI orchestration API.
Update the URL, event types, or enabled state of a webhook.
cURL
curl --request PATCH \ --url https://api.example.com/api/v1/webhooks/{id} \ --header 'Content-Type: application/json' \ --data ' { "url": "<string>", "event_types": [ "<string>" ], "enabled": true, "description": "<string>" } '
curl -X PATCH https://hitheo.ai/api/v1/webhooks/WEBHOOK_ID \ -H "Authorization: Bearer $THEO_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "event_types": ["*"], "enabled": true }'
{ "updated": true }
Was this page helpful?