WorkOS · Schema

AuditLogEventIngestionDto

AuthenticationIdentity ProviderSSOSAMLOIDCSCIMDirectory SyncAuthorizationFGAAudit LogsMFAB2B SaaSAgentsMCP

Properties

Name Type Description
organization_id string The unique ID of the Organization.
event object The audit log event to create.
View JSON Schema on GitHub

JSON Schema

workos-auditlogeventingestiondto-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AuditLogEventIngestionDto",
  "title": "AuditLogEventIngestionDto",
  "type": "object",
  "properties": {
    "organization_id": {
      "type": "string",
      "description": "The unique ID of the Organization.",
      "example": "org_01EHWNCE74X7JSDV0X3SZ3KJNY"
    },
    "event": {
      "description": "The audit log event to create.",
      "$ref": "#/components/schemas/AuditLogEventDto"
    }
  },
  "required": [
    "organization_id",
    "event"
  ]
}