Incoming Webhooks
Regenerate incoming webhook access token
Generates a new bearer access token for the webhook, invalidating the previous one. The new token is returned in the response. Requires a USER API key.
post/public/v1/incoming-webhooks/{webhookId}/regenerate-access-token
Path parameters
webhookIdstring required
Example:clx123incomingwebhook
Response
Incoming webhook with the regenerated access token
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"
}