BetterCloud · JSON Structure

Bettercloud Event Structure

An audit event recording activity in BetterCloud or connected SaaS applications.

Type: object Properties: 6
AutomationComplianceEnterpriseIT OperationsSaaS ManagementSecurityWorkflowsUser Lifecycle

Event is a JSON Structure definition published by BetterCloud, describing 6 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

id type actor_email target_email description occurred_at

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/bettercloud/refs/heads/main/json-structure/bettercloud-event-structure.json",
  "name": "Event",
  "description": "An audit event recording activity in BetterCloud or connected SaaS applications.",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier of the event.",
      "example": "evt-500100"
    },
    "type": {
      "type": "string",
      "description": "Event type in dot-notation (e.g., user.suspended, group.created).",
      "example": "user.suspended"
    },
    "actor_email": {
      "type": "string",
      "format": "email",
      "nullable": true,
      "description": "Email of the user or system that triggered the event.",
      "example": "admin@example.com"
    },
    "target_email": {
      "type": "string",
      "format": "email",
      "nullable": true,
      "description": "Email of the user or resource affected by the event.",
      "example": "jsmith@example.com"
    },
    "description": {
      "type": "string",
      "description": "Human-readable description of what happened.",
      "example": "User suspended via BetterCloud workflow"
    },
    "occurred_at": {
      "type": "datetime",
      "description": "When the event occurred.",
      "example": "2026-04-18T14:00:00Z"
    }
  }
}