Website Feature Webhooks
The following collection of webhooks indicates when the specified features and services have been enabled for a particular Website
. This can occur when a Website
is added or during other User
changes (i.e. account upgrade). See the Webhook Events Overview for more general information.
Event | Description |
---|---|
website_monitor_enabled | The target field will identify the Website for which the monitoring service has been enabled. |
website_clean_enabled | The target field will identify the Website for which the remediation service has been enabled. |
website_accelerate_enabled | The target field will identify the Website for which the CDN service has been enabled. The body will include connectivity details for the services provisioned. |
website_firewall_enabled | The target field will identify the Website for which the WAF service has been enabled. The body will include connectivity details for the services provisioned. |
Example
{
"id":123456,
"event": "website_monitor_enabled",
"target": {
"type": "Website",
"id": 123456,
},
}
{
"id":123457,
"event": "website_clean_enabled",
"target": {
"type": "Website",
"id": 123456,
},
}
{
"id":123458,
"event": "website_accelerate_enabled",
"target": {
"type": "Website",
"id": 123456,
},
"body": {
"website_url": "example.com",
"website_edge_address": "abc123.sectigocdn.com",
"website_edge_ip": "65.66.67.68",
},
}
{
"id":123459,
"event": "website_firewall_enabled",
"target": {
"type": "Website",
"id": 123456,
},
"body": {
"website_url": "example.com",
"website_edge_address": "abc123.sectigocdn.com",
"website_edge_ip": "65.66.67.68",
},
}