v61

OpenAPI 3.1.0Apache 2.0raw.githubusercontent.com2026-08-018131,3812.6 MB
Portal Audit Logs

Get Portal Audit Log Webhook Status

Returns status of the audit log webhook.

get/v3/portals/{portalId}/audit-log-webhook/status

Response

Get response for portal audit log webhook status

webhook_status'active' | 'inactive'

Current status of a webhook. active indicates the webhook is sending or ready to send requests. inactive indicates the webhook has been turned off due to failed attempts.

webhook_enabledboolean

Configured status of a webhook. enabled indicates the client will accept requests. disabled indicates the client will not accept requests.

last_attempt_atstring date-time

The last time a request was made to the webhook, regardless of outcome.

last_response_codeinteger

The last response code received from the webhook.

last_response_messagestring

The last message received from the webhook. Useful for debugging.

Example response

{
  "webhook_status": "active",
  "webhook_enabled": true,
  "last_attempt_at": "2023-03-21T09:29:14.52Z",
  "last_response_code": 401,
  "last_response_message": "Unauthenticated"
}