v50

latestOpenAPI 3.1.0Apache 2.0raw.githubusercontent.com2026-07-068428533.0 MB
Audit Logs

Update Audit Log Webhook

Updates the configuration for a webhook to receive audit logs.

patch/v2/audit-log-webhook

Request body

endpointstring nullable

The endpoint that will receive audit log messages.

authorizationstring nullable

The value to include in the Authorization header when sending audit logs to the webhook.

enabledboolean

Indicates if the data should be sent to the webhook.

log_format'cef' | 'json' | 'cps'

The output format of each log messages.

skip_ssl_verificationboolean

Indicates if the SSL certificate verification of the host endpoint should be skipped when delivering payloads. We strongly recommend not setting this to 'true' as you are subject to man-in-the-middle and other attacks. This option should be considered only for self-signed SSL certificates used in a non-production environment.

Example request

{
  "endpoint": "https://example.com/audit-logs",
  "authorization": "Bearer sometoken",
  "enabled": true
}

Response

Get response for audit log webhook

endpointstring nullable

The endpoint that will receive audit log messages.

enabledboolean nullable

Indicates whether audit data should be sent to the webhook.

log_format'cef' | 'json' | 'cps'

The output format of each log messages.

skip_ssl_verificationboolean

Indicates if the SSL certificate verification of the host endpoint should be skipped when delivering payloads.

updated_atstring date-time

Timestamp when this webhook was last updated. Initial value is 0001-01-01T00:00:0Z.

Example response

{
  "endpoint": "https://example.com/audit-logs",
  "enabled": true
}