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.
Authenticate requests using a bearer token.
Supported token types:
Header format
Authorization: Bearer <your_token>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.
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 conditionsUpper bound (inclusive) for filtering audit logs by occurred_at.
Only events with occurred_at <= to_date are exported.
"<timestamp>"
Request succeeded and an export job identifier is returned.