Create Export Job
Create a bulk export job that writes audit logs in JSON Lines format.
The export job is processed asynchronously. The response includes a job identifier that you can use to check job status and retrieve the download URL.
Documentation Index
Fetch the complete documentation index at: https://anaconda.com/docs/llms.txt
Use this file to discover all available pages before exploring further.
Authorizations
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
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.
API version identifier (for example, v1 or v2). Defaults to v1
when not provided.
API version to target for this request.
Body
Request body for creating a new export job that filters audit logs and writes them in JSON Lines format.
Lower bound (inclusive) for filtering audit logs by occurred_at.
Only events with occurred_at >= from_date are exported.
"<timestamp>"
Search filters in the format column_name:search_string1,search_string2.
Multiple values for a single column are separated by commas. To combine
multiple q entries, use search_operator.
Logical operator used to combine multiple q filters:
or— export logs that match any search conditionand— export logs that match all search conditions
Upper bound (inclusive) for filtering audit logs by occurred_at.
Only events with occurred_at <= to_date are exported.
"<timestamp>"
Response
Request succeeded and an export job identifier is returned.