Retrieve a list of acceptable CSV formats for uploading remediations.

Retrieves a list of acceptable CSV formats for uploading remediations. See Using Global API Keys for more information on permission and scope requirements.

SecuritybearerAuth
Request
path Parameters
orgID
required
integer

The ID of the target organization.

Responses
200

successful operation

4XX

Invalid Request

get/orgs/{orgID}/remediations/action-sets/upload/formats
Request samples
$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
Response samples
application/json
{
  • "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]"
          }
        ]
      }
    ]
}