Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[API design] Fleet-maintained apps for Windows #26381

Open
wants to merge 6 commits into
base: docs-v4.66.0
Choose a base branch
from
Open
Changes from 5 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
14 changes: 9 additions & 5 deletions docs/REST API/rest-api.md
Original file line number Diff line number Diff line change
Expand Up @@ -9511,20 +9511,23 @@ List available Fleet-maintained apps.
"id": 1,
"name": "1Password",
"version": "8.10.40",
"platform": "darwin"
"platform": "darwin",
"software_added": false
},
{
"id": 2,
"name": "Adobe Acrobat Reader",
"version": "24.002.21005",
"platform": "darwin"
"name": "1Password",
"version": "8.10.40",
"platform": "windows"
},
{
"id": 3,
"name": "Box Drive",
"version": "2.39.179",
"platform": "darwin"
"platform": "darwin",
"software_title_id": 1
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Dev note

If the team already has the software added (as a Fleet-maintained app, App Store (app), or custom package), this is the software title ID for that software.

If the team doesn't have the software added, software_title_id is omitted.

},
...
],
"meta": {
"has_next_results": false,
Expand Down Expand Up @@ -9565,6 +9568,7 @@ Returns information about the specified Fleet-maintained app.
"platform": "darwin",
"install_script": "#!/bin/sh\ninstaller -pkg \"$INSTALLER_PATH\" -target /",
"uninstall_script": "#!/bin/sh\npkg_ids=$PACKAGE_ID\nfor pkg_id in '${pkg_ids[@]}'...",
"software_title_id": 3
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Dev note

If the team already has the software added (as a Fleet-maintained app, App Store (app), or custom package), this is the software title ID for that software.

If the team doesn't have the software added, software_title_id is omitted.

}
}
```
Expand Down
Loading