Skip to main content
FuseFuse
IntegrationsApple businessActions

List Apple Business audit events

List audit events from the Apple Business API.

Agent markdown

audit_events.list · Apple Business · v1

Details

Risk
Read
Idempotency
Safe
Availability
Default
Exposure
REST, SDK
MCP hints
readOnly=true, destructive=false, idempotent=true, openWorld=true

Scopes

  • apple.audit.read

Input

Input schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
page_sizeintegerNominimum 1; maximum 100
cursorstringNominLength 1; maxLength 512
start_timestampstringNominLength 1; maxLength 64
end_timestampstringNominLength 1; maxLength 64
actor_idstringNominLength 1; maxLength 200
subject_idstringNominLength 1; maxLength 200
event_typestringNomaxLength 128

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
audit_eventsarray<object>YesmaxItems 100
audit_events[]objectYesadditionalProperties false
audit_events[].idstringYesminLength 1; maxLength 200
audit_events[].event_typestringNomaxLength 128
audit_events[].event_timestringNominLength 1; maxLength 64
audit_events[].actor_idstringNominLength 1; maxLength 200
audit_events[].subject_idstringNominLength 1; maxLength 200
audit_events[].outcomestringNomaxLength 128
next_cursorstringNominLength 1; maxLength 512

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "page_size": {
      "type": "integer",
      "minimum": 1,
      "maximum": 100
    },
    "cursor": {
      "type": "string",
      "minLength": 1,
      "maxLength": 512
    },
    "start_timestamp": {
      "type": "string",
      "minLength": 1,
      "maxLength": 64
    },
    "end_timestamp": {
      "type": "string",
      "minLength": 1,
      "maxLength": 64
    },
    "actor_id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 200
    },
    "subject_id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 200
    },
    "event_type": {
      "type": "string",
      "maxLength": 128
    }
  }
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "audit_events": {
      "type": "array",
      "items": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "id": {
            "type": "string",
            "minLength": 1,
            "maxLength": 200
          },
          "event_type": {
            "type": "string",
            "maxLength": 128
          },
          "event_time": {
            "type": "string",
            "minLength": 1,
            "maxLength": 64
          },
          "actor_id": {
            "type": "string",
            "minLength": 1,
            "maxLength": 200
          },
          "subject_id": {
            "type": "string",
            "minLength": 1,
            "maxLength": 200
          },
          "outcome": {
            "type": "string",
            "maxLength": 128
          }
        },
        "required": [
          "id"
        ]
      },
      "maxItems": 100
    },
    "next_cursor": {
      "type": "string",
      "minLength": 1,
      "maxLength": 512
    }
  },
  "required": [
    "audit_events"
  ]
}