Both endpoints require authentication. Include your API key in the
X-API-Key header.PUT /api/v1/export-format
Create or replace your organization’s export format configuration. If no configuration exists, one is created. If one already exists, it is fully replaced by the new values.Request body
string
required
Output file format. Accepted values:
json, csv, jsonl.string[]
List of fields to include in the export. When omitted, all fields are included by default.
string
default:","
Column delimiter for CSV exports. Ignored for JSON and JSONL formats.
boolean
default:"true"
Whether to include a header row in CSV exports.
string
Optional compression for the export file. Accepted values:
gzip, none. Defaults to none.Response
Returns the saved configuration.string
required
UUID of the format configuration.
string
required
The configured output format.
string[]
Fields included in the export.
string
CSV delimiter character.
boolean
Whether CSV exports include a header row.
string
Compression applied to the export file.
string
required
ISO 8601 timestamp of the last update.
Example
GET /api/v1/export-format
Retrieve your organization’s current export format configuration.Response
Returns the current format configuration object if one has been set.string
required
UUID of the format configuration.
string
required
Output file format (
json, csv, or jsonl).string[]
Fields included in the export, if configured.
string
CSV column delimiter.
boolean
Whether CSV exports include a header row.
string
Compression type applied to export files.
string
required
ISO 8601 timestamp of the last configuration update.