Skip to main content
GET
/
api
/
audit-logs
/
export
/
{job_id}
/
download
Download Export
curl --request GET \
  --url https://anaconda.com/api/audit-logs/export/{job_id}/download \
  --header 'Authorization: Bearer <token>'
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Authenticate requests using a bearer token.

Supported token types:

  • Access Token — short-lived token obtained from the authentication service
  • JWT Token — JSON Web Token containing encoded credentials

Header format

  • Authorization: Bearer <your_token>

Headers

X-Org-Name
string | null

Name of the organization to scope the request to. This header is required in multi-tenant deployments.

Organization name used to resolve the tenant context.

X-API-Version
string
default:v1

API version identifier (for example, v1 or v2). Defaults to v1 when not provided.

API version to target for this request.

Path Parameters

job_id
string<uuid>
required

UUID of the export job whose data should be downloaded.

Identifier of the export job.

Example:

"<uuid>"

Response

Request succeeded and the export data is streamed in the response.