Skip to main content
POST
/
tiro
/
webhooks
Create a webhook
curl --request POST \
  --url https://{deployment}/api/v1/tiro/webhooks \
  --header 'Content-Type: application/json' \
  --header 'X-API-KEY: <api-key>' \
  --data '
{
  "name": "My hook",
  "url": "https://example.com/hook",
  "event_types": [
    "note.ended",
    "note.summary_generated"
  ]
}
'
{
  "success": true,
  "webhook": {},
  "message": "<string>"
}

Authorizations

X-API-KEY
string
header
required

Your deployment's API key (MMK_API_KEY).

Body

application/json
name
string
required
url
string
required
event_types
string[]
required

Response

Created webhook

success
boolean
webhook
object
message
string