Create a CSV export
exports
Create a CSV export
Unified export endpoint. Small requests return 200 text/csv inline; large requests create a durable async job and return 202 + status url. Idempotency-Key is optional but recommended: send the same key on every retry of a create so a lost response can’t spawn a duplicate job (the client can’t know the delivery mode in advance). Omit it and the request still succeeds, just without that retry-safety.
POST
Create a CSV export
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
application/json
Batch IDs to export (must be owned by the org).
Minimum array length:
1Example:
Response
Sync delivery: the CSV is returned inline (small exports under the size gate).