Retrieve a list of acceptable CSV formats for uploading remediations.

Retrieves a list of acceptable CSV formats for uploading remediations.

SecuritybearerAuth
Request
path Parameters
orgID
required
integer

The ID of the target organization.

Responses
200

successful operation

400

Invalid Request

401

Access token is missing or invalid

403

You do not have permission to perform this action.

404

Entity not found

429

Too many requests

503

Service Unavailable

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
[
  • {
    • "name": "string",
    • "format": "csv",
    • "headers": [
      • {
        • "header": "string",
        • "required": true,
        • "example": "string"
        }
      ]
    }
]