Webhooks
Update webhook
patch/webhooks/{id}
Path parameters
idstring required
Resource ID (stringified bigint)
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,
"createdAt": "2025-01-15T12:00:00Z"
}