Retrieves a list of acceptable CSV formats for uploading remediations.
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/upload/format" $response = (Invoke-WebRequest -Method Get -Uri $url -Headers $headers -ContentType "application/json").Content
{- "summary": "Vulnerability scanner formats example",
- "description": "Example of supported vulnerability scanner formats with their required headers and field specifications",
- "value": [
- {
- "id": "generic",
- "name": "Generic Report",
- "format": "csv",
- "headers": [
- {
- "header": "Hostname",
- "required": true,
- "example": "host1"
}, - {
- "header": "CVE ID",
- "required": true,
- "example": "CVE-2021-1234"
}, - {
- "header": "Severity",
- "required": false,
- "example": "[critical,high,medium,low,unknown]"
}
]
}, - {
- "id": "crowd-strike",
- "name": "CrowdStrike",
- "format": "csv",
- "headers": [
- {
- "header": "Hostname",
- "required": true,
- "example": "host1"
}, - {
- "header": "CVE ID",
- "required": true,
- "example": "CVE-2021-1234"
}, - {
- "header": "Severity",
- "required": false,
- "example": "[critical,high,medium,low,unknown]"
}
]
}, - {
- "id": "qualys",
- "name": "Qualys",
- "format": "csv",
- "headers": [
- {
- "header": "IP",
- "required": true,
- "example": "192.168.0.43"
}, - {
- "header": "CVE ID",
- "required": true,
- "example": "CVE-2021-1234"
}, - {
- "header": "Severity",
- "required": false,
- "example": "[1-5]"
}
]
}, - {
- "id": "rapid7",
- "name": "Rapid7",
- "format": "csv",
- "headers": [
- {
- "header": "Host",
- "required": true,
- "example": "host1"
}, - {
- "header": "CVE",
- "required": true,
- "example": "CVE-2021-1234"
}, - {
- "header": "Severity",
- "required": false,
- "example": "[critical,high,medium,low,unknown]"
}
]
}, - {
- "id": "tenable",
- "name": "Tenable Vulnerability Management",
- "format": "csv",
- "headers": [
- {
- "header": "Host",
- "required": true,
- "example": "[host1|192.168.0.43]"
}, - {
- "header": "CVE",
- "required": true,
- "example": "CVE-2021-1234"
}, - {
- "header": "Risk",
- "required": false,
- "example": "[critical,high,medium,low,unknown]"
}
]
}
]
}