FSMA 204 § 1.1455(c) requires records be furnished to FDA within 24 hours of request. This endpoint enqueues an async export of all CriticalTrackingEvents for the given lot — forward (downstream), backward (upstream), or both — and returns a TraceabilityExportJob with a short_id. When the job completes a short-lived signed S3 URL is delivered (poll with the same endpoint or check the compliance dashboard at /compliance/). The full FDA Sortable Spreadsheet template (per-CTE sheets) lands with C-2472; this endpoint emits a minimal single-sheet KDE workbook in the meantime. Returns 202 Accepted for the standard async path and 200 OK when the job completed synchronously (e.g. eager-mode test runs). Caller must hold OWNER or MANAGER on the organization that owns the lot’s brand; other orgs receive 404 (no leak of lot existence).
Documentation Index
Fetch the complete documentation index at: https://docs.closient.com/llms.txt
Use this file to discover all available pages before exploring further.
Short ID of the ProductLot to export — 22-character shortuuid encoding of the lot's UUID primary key.
22Traversal direction. forward (downstream) walks where the lot has been shipped; backward (upstream) walks where the lot came from; both does a full bidirectional traversal (default — matches the FSMA 204 § 1.1455(c) shape).
forward, backward, both Output file format. Only xlsx (Excel workbook) is currently supported; matches the FDA Sortable Spreadsheet template.
xlsx OK
202 response body for an enqueued lot traceability export.
Short ID of the TraceabilityExportJob — a 22-character shortuuid encoding of the underlying UUID primary key. Poll the same endpoint with the same lot to observe status transitions, or look it up directly on the compliance dashboard at /compliance/.
22Lifecycle status of the export job. Progresses pending → processing → delivered (terminal success) or pending → processing → failed (terminal failure). A delivered job is immutable except for download_count.
pending, processing, delivered, failed Short ID of the ProductLot whose traceability chain was queued — echoed from the path parameter for client-side correlation. 22-character shortuuid encoding.
22Traversal direction. forward walks downstream CriticalTrackingEvents (where did this lot ship?); backward walks upstream CTEs (where did this lot come from?); both does a full bidirectional traversal — the default for FSMA 204 § 1.1455(c) requests.
forward, backward, both Output file format. Only xlsx (Excel workbook) is currently supported; matches the FDA Sortable Spreadsheet template format.
xlsx ISO-8601 / RFC 3339 timestamp marking when the job was enqueued. Used by the FSMA 204 § 1.1455(c) 24-hour SLA: delivered_at - requested_at must stay under 24h for the org to remain in compliance.
Short-lived signed S3 URL for the rendered XLSX, populated only when the job has reached status='delivered'. Always null while pending or processing, and on terminal failed status.