Skip to main content
PATCH
/
tiro
/
webhooks
/
{webhook_id}
Update a webhook
curl --request PATCH \
  --url https://{deployment}/api/v1/tiro/webhooks/{webhook_id} \
  --header 'Content-Type: application/json' \
  --header 'X-API-KEY: <api-key>' \
  --data '
{
  "is_active": false
}
'
{
  "success": true,
  "webhook": {},
  "message": "<string>"
}

Authorizations

X-API-KEY
string
header
required

Your deployment's API key (MMK_API_KEY).

Path Parameters

webhook_id
integer
required

Numeric Tiro webhook ID.

Body

application/json
name
string
url
string
is_active
boolean
event_types
string[]

Response

Updated webhook

success
boolean
webhook
object
message
string