Skip to main content

vw_webhooks

Creates, updates, deletes, gets or lists a vw_webhooks resource.

Overview

Namevw_webhooks
TypeView
Idazure_extras.app_compliance_automation.vw_webhooks

Fields

See the SQL Definition (view DDL) for fields returned by this view.

SQL Definition

SELECT
JSON_EXTRACT(properties, '$.webhookId') as "webhook_id",
JSON_EXTRACT(properties, '$.status') as "status",
JSON_EXTRACT(properties, '$.tenantId') as "tenant_id",
JSON_EXTRACT(properties, '$.sendAllEvents') as "send_all_events",
JSON_EXTRACT(properties, '$.events') as "events",
JSON_EXTRACT(properties, '$.payloadUrl') as "payload_url",
JSON_EXTRACT(properties, '$.contentType') as "content_type",
JSON_EXTRACT(properties, '$.webhookKey') as "webhook_key",
JSON_EXTRACT(properties, '$.updateWebhookKey') as "update_webhook_key",
JSON_EXTRACT(properties, '$.webhookKeyEnabled') as "webhook_key_enabled",
JSON_EXTRACT(properties, '$.enableSslVerification') as "enable_ssl_verification",
JSON_EXTRACT(properties, '$.deliveryStatus') as "delivery_status",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
reportName,
webhookName
FROM azure_extras.app_compliance_automation.webhooks
WHERE reportName = 'replace-me';