Add user activity logs for MDM bootstrap package endpoints (#11302)

This commit is contained in:
gillespi314
2023-04-26 13:40:14 -05:00
committed by GitHub
parent 4866bccb3f
commit 8df5f26bea
7 changed files with 274 additions and 0 deletions
+38
View File
@@ -731,6 +731,44 @@ This activity contains the following fields:
}
```
### Type `added_bootstrap_package`
Generated when a user adds a new bootstrap package to a team (or no team).
This activity contains the following fields:
- "package_name": Name of the package.
- "team_id": The ID of the team that the package applies to, null if it applies to devices that are not in a team.
- "team_name": The name of the team that the package applies to, null if it applies to devices that are not in a team.
#### Example
```json
{
"bootstrap_package_name": "bootstrap-package.pkg",
"team_id": 123,
"team_name": "Workstations"
}
```
### Type `deleted_bootstrap_package`
Generated when a user deletes a bootstrap package from a team (or no team).
This activity contains the following fields:
- "package_name": Name of the package.
- "team_id": The ID of the team that the package applies to, null if it applies to devices that are not in a team.
- "team_name": The name of the team that the package applies to, null if it applies to devices that are not in a team.
#### Example
```json
{
"package_name": "bootstrap-package.pkg",
"team_id": 123,
"team_name": "Workstations"
}
```
<meta name="pageOrderInSection" value="1400">