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