IntegrationsApple businessActions
List Apple Business audit events
List audit events from the Apple Business API.
audit_events.list · Apple Business · v1
Details
Scopes
apple.audit.read
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
page_size | integer | No | minimum 1; maximum 100 |
cursor | string | No | minLength 1; maxLength 512 |
start_timestamp | string | No | minLength 1; maxLength 64 |
end_timestamp | string | No | minLength 1; maxLength 64 |
actor_id | string | No | minLength 1; maxLength 200 |
subject_id | string | No | minLength 1; maxLength 200 |
event_type | string | No | maxLength 128 |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
audit_events | array<object> | Yes | maxItems 100 |
audit_events[] | object | Yes | additionalProperties false |
audit_events[].id | string | Yes | minLength 1; maxLength 200 |
audit_events[].event_type | string | No | maxLength 128 |
audit_events[].event_time | string | No | minLength 1; maxLength 64 |
audit_events[].actor_id | string | No | minLength 1; maxLength 200 |
audit_events[].subject_id | string | No | minLength 1; maxLength 200 |
audit_events[].outcome | string | No | maxLength 128 |
next_cursor | string | No | minLength 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"
]
}