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] Create policies automatically for Fleet-maintained apps #23649

Open
wants to merge 3 commits into
base: docs-v4.60.0
Choose a base branch
from
Open
Changes from 2 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
18 changes: 15 additions & 3 deletions docs/REST API/rest-api.md
Original file line number Diff line number Diff line change
Expand Up @@ -8736,6 +8736,12 @@ Get a list of all software.
"name": "FirefoxInsall.pkg",
"version": "125.6",
"self_service": true
"automatic_install_policies": [
{
"policy_id": 343,
"policy_name": "[Install software] Firefox.app",
ghernandez345 marked this conversation as resolved.
Show resolved Hide resolved
}
],
},
"app_store_app": null,
"versions_count": 3,
Expand Down Expand Up @@ -8983,7 +8989,7 @@ Returns information about the specified software. By default, `versions` are sor

#### Example

`GET /api/v1/fleet/software/titles/12`
`GET /api/v1/fleet/software/titles/12?team_id=3`

##### Default response

Expand All @@ -8993,8 +8999,8 @@ Returns information about the specified software. By default, `versions` are sor
{
"software_title": {
"id": 12,
"name": "Firefox.app",
"bundle_identifier": "org.mozilla.firefox",
"name": "Falcon.app",
"bundle_identifier": "crowdstrike.falcon.Agent",
"software_package": {
"name": "FalconSensor-6.44.pkg",
"version": "6.44",
Expand All @@ -9006,6 +9012,12 @@ Returns information about the specified software. By default, `versions` are sor
"post_install_script": "sudo /Applications/Falcon.app/Contents/Resources/falconctl license 0123456789ABCDEFGHIJKLMNOPQRSTUV-WX",
"uninstall_script": "/Library/CS/falconctl uninstall",
"self_service": true,
"automatic_install_policies": [
{
"id": 343,
"name": "[Install software] Crowdstrike Agent",
}
],
"status": {
"installed": 3,
"pending_install": 1,
Expand Down
Loading