Retrieves a paged list of solutions in a given Action Set. See Using Global API Keys for more information on permission and scope requirements.
Successful Operation
Invalid Request
Access token is missing or invalid
You do not have permission to perform this action.
Entity not found
Too many requests
Service Unavailable
$apiKey = 'your_automox_api_key' $headers = @{ "Authorization" = "Bearer $apiKey" } $url = "https://console.automox.com/api/orgs/{orgID}/remediations/action-sets/{actionSetID}/solutions?page=0&solution_type=automox-patch" $response = (Invoke-WebRequest -Method Get -Uri $url -Headers $headers).Content
{- "metadata": {
- "total_pages": 1,
- "current_page": 0,
- "limit": 500,
- "total_count": 7
}, - "data": [
- {
- "id": 17194,
- "solution_type": "automox-patch",
- "remediation_type": "patch-now",
- "solution_details": {
- "requires_reboot": true,
- "package_version_id": 116919,
- "package_version": "1.10.218",
- "package_name": "legacy-error-adaptor 1.10.218",
- "software_version": "1.10.218",
- "software_name": "legacy-error-adaptor"
}, - "devices": [
- {
- "id": 1,
- "name": "ThistleNewSavannah",
- "custom_name": "Thistle New Savannah",
- "status": "pending",
- "deleted": false,
- "ip_addrs_private": [
- "192.215.169.176",
- "125.200.74.239"
]
}, - {
- "id": 2,
- "name": "BeigeBaumbachbury",
- "custom_name": "Beige Baumbachbury",
- "status": "pending",
- "deleted": false,
- "ip_addrs_private": [
- "10.218.203.26",
- "255.128.27.174"
]
}
], - "vulnerabilities": [
- {
- "id": "CVE-2014-1961",
- "title": "",
- "summary": "Unspecified vulnerability in the Portal WebDynPro in SAP NetWeaver allows remote attackers to obtain sensitive path information via unknown attack vectors.",
- "severity": "low"
}, - {
- "id": "CVE-2023-28152",
- "title": "",
- "summary": "An issue was discovered in Independentsoft JWord before 1.1.110. The API is prone to XML external entity (XXE) injection via a remote DTD in a DOCX file.",
- "severity": "high"
}
]
}
]
}