since timestamp to export only records created or updated after a given point. The response returns a jobId immediately; use the job status endpoint to poll for completion and retrieve the pre-signed download URL.
Request
POST https://api.clinikapi.com/v1/bulk/export
Headers
Your ClinikAPI secret key (
clk_live_* or clk_test_*).Must be
application/json.Body
Array of FHIR resource type names to export (e.g.
["Patient", "Encounter", "Observation"]). All tenant data for each type is included unless since is specified.ISO 8601 timestamp. When provided, only records created or updated on or after this time are included (e.g.
"2025-01-01T00:00:00Z").Response
Returns202 Accepted immediately. The export job runs asynchronously.
Unique job identifier (e.g.
job_abc123). Use this to poll for status and retrieve the download URL.Initial job status. Always
pending at the time of creation.Human-readable confirmation message (e.g.
"Export job started").Standard response metadata including
requestId, timestamp, status, and rate-limit fields.