Retrieves a CSV of the latest result for each policy execution, for the given zone.

This endpoint returns a CSV of the latest result for each policy execution in a given zone.

SecuritybearerAuth
Request
path Parameters
zoneUUID
required
string <uuid>

The UUID of the target zone.

Responses
200

Downloads the policy list CSV automatically.

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/zones/{zoneUUID}/reports/policies/csv
Request samples
$apiKey = 'your_automox_api_key' $headers = @{
  "Authorization" = "Bearer $apiKey"
  }
$url = "https://console.automox.com/api/zones/{zoneUUID}/reports/policies/csv" Invoke-WebRequest -Method Get -Uri $url -Headers $headers -ContentType "application/octet-stream" -OutFile "$env:userprofile\Downloads\policy-list_report.csv"
Response samples
application/octet-stream
No sample