Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions docs/Contributing/reference/audit-logs.md
Original file line number Diff line number Diff line change
Expand Up @@ -2567,6 +2567,28 @@ This activity contains the following fields:
}
```

## ran_custom_mdm_command

Generated when a user runs a custom MDM command via API or the fleetctl CLI.

This activity contains the following fields:
- "host_id": ID of the host.
- "host_display_name": Display name of the host.
- "command_uuid": UUID of the MDM command used to install the app.
- "request_type": the type of custom MDM command.
- "platform": the platform of the host ("darwin", "android", "windows", or "linux").

#### Example

```json
{
"host_id": 1,
"host_display_name": "Anna's MacBook Pro",
"command_uuid": "98765432-1234-1234-1234-1234567890ab",
"request_type": "EraseDevice",
"platform": "darwin"
}
```

<meta name="title" value="Audit logs">
<meta name="pageOrderInSection" value="1400">
Expand Down
Loading