Skip to main content
PUT
/
api
/
v1
/
webhooks
/
{webhook_id}
Update Webhook
curl --request PUT \
  --url https://api.example.com/api/v1/webhooks/{webhook_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "url": "<string>",
  "is_active": true
}
'
{
  "id": 123,
  "user_id": "<string>",
  "url": "<string>",
  "is_active": true,
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z"
}

Authentication

✅ Organization User (CustomerEmployee)
❌ Delegated User (EndUser)
✅ Service Account

Required Permissions

Webhooks:Update: Always required.

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

webhook_id
integer
required

Body

application/json

Schema for updating a webhook.

url
string | null
is_active
boolean | null

Response

Successful Response

Schema for webhook response.

id
integer
required
user_id
string
required
url
string
required
is_active
boolean
required
created_at
string<date-time>
required
updated_at
string<date-time> | null