Update an event subscription
Update an existing event subscription by ID.
Path parameters
The ID of the target app.
The ID of the subscription to update.
Request body
A boolean indicating whether to activate or pause the webhook subscription. If true, the subscription will send webhook notifications. If false, the subscription is paused and will not send notifications.
Example request
{
"active": true
}Response
successful operation
Whether the subscription is active or paused. If true, the subscription will send webhook notifications. If false, the subscription is paused and will not send notifications.
The timestamp when the webhook subscription was created, in ISO 8601 format (e.g., 2020-02-29T12:30:00Z).
The type of event to listen for. Accepted values include contact.creation, contact.deletion, contact.propertyChange, and similar event types for other CRM objects and custom objects.
The name of the event to listen for. This is used with custom objects to specify custom event types beyond the standard eventType enum values.
The unique ID of the webhook subscription.
The ID of the object type for the subscription. This can be a standard CRM object (e.g., 'contact', 'company', 'deal') or a custom object ID for custom object subscriptions.
The internal name of the property to monitor for changes. Only applies when eventType is propertyChange.
The timestamp when the webhook subscription was last updated, in ISO 8601 format (e.g., 2020-02-29T12:30:00Z).