Incoming Webhooks
Update incoming webhook
Updates an incoming webhook's name, description, active state, or authentication toggle. Requires a USER API key.
put/public/v1/incoming-webhooks/{webhookId}
Path parameters
webhookIdstring required
Example:clx123incomingwebhook
Request body
Example request
{
"name": "External CRM event",
"description": "Receives events from the external CRM",
"isActive": true,
"useAuthentication": true
}Response
Updated incoming webhook
Example response
{
"id": "clx123incomingwebhook",
"name": "External CRM event",
"description": "Receives events from the external CRM",
"url": "https://hooks.example.com/webhook/clx123incomingwebhook",
"isActive": true,
"useAuthentication": true,
"createdAt": "2024-01-01T12:00:00Z",
"updatedAt": "2024-01-01T12:00:00Z",
"accessToken": "64-character-access-token"
}