Webhooks
Update webhook
patch/webhooks/{id}
Path parameters
idstring required
Resource ID returned by the matching create or list endpoint.
Request body
Example request
{
"url": "https://example.com/webhook",
"eventTypes": [
"tweet.new",
"tweet.reply"
],
"isActive": true
}Response
Webhook updated
Example response
{
"id": "42",
"url": "https://example.com/webhooks/xquik",
"eventTypes": [
"tweet.new",
"tweet.reply"
],
"isActive": true,
"deliveryStatus": "active",
"failureHardCap": 200,
"createdAt": "2025-01-15T12:00:00Z"
}