v1
latestOpenAPI 3.1.12026-07-2692827.1 KBWebhooks
Create a webhook
Create a webhook to receive new meeting content. At least one of include_transcript, include_crm_matches, include_summary, or include_action_items must be true.
post/webhooks
Request body
Example request
{
"destination_url": "https://example.com/webhook",
"include_action_items": true,
"include_crm_matches": true,
"include_summary": true,
"include_transcript": true,
"triggered_for": [
"my_recordings",
"my_shared_with_team_recordings",
"shared_external_recordings"
]
}Response
The created webhook.
Example response
{
"id": "ikEoQ4bVoq4JYUmc",
"url": "https://example.com/webhook",
"secret": "whsec_x6EV6NIAAz3ldclszNJTwrow",
"created_at": "2025-06-30T10:40:46Z",
"include_transcript": true,
"include_crm_matches": true,
"include_summary": true,
"include_action_items": true,
"triggered_for": [
"my_recordings",
"my_shared_with_team_recordings",
"shared_external_recordings"
]
}