Create Export Job
Create a bulk export job that writes audit logs in JSON Lines format. The export is processed asynchronously — use the returned job ID to check status and download the results.
Authorizations
Bearer token obtained by authenticating with your organization's service account credentials (client_id and client_secret).
See the Getting started page for the full authentication flow.
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.
The API version to use. Set to v1.
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.