kt export-jobs
The kt export-jobs command group manages asynchronous evidence export jobs for compliance and audit workflows.
Use this page when
- You need to create, monitor, or download asynchronous evidence export jobs.
- You are building a compliance workflow that produces periodic event or audit-log exports.
- You want to download completed export artifacts from local or S3-backed storage.
Primary audience
- Primary: AI Agents, Technical Engineers
- Secondary: Technical Leaders
List Export Jobs
kt export-jobs list
Get an Export Job
kt export-jobs get --id job_abc123
Returns the job status, configuration, and artifact metadata.
Create an Export Job
Queue a new evidence export:
kt export-jobs create --type events --format csv --date-from 2026-01-01 --date-to 2026-01-31
Export jobs run asynchronously in the background. Check the job status with get until it completes.
Download an Export Artifact
Download the completed export:
kt export-jobs download --id job_abc123 --output evidence-export.csv
For S3-backed storage, the download redirects to a presigned URL.
Export Types
| Type | Description |
|---|---|
events | Gateway decision events |
traces | Distributed trace spans |
escalations | Escalation records and resolutions |
audit-log | Platform audit log entries |
Typical Compliance Workflow
# Create a monthly evidence export
kt export-jobs create --type events --format csv \
--date-from 2026-03-01 --date-to 2026-03-31
# Check status
kt export-jobs get --id job_new
# Download when complete
kt export-jobs download --id job_new --output march-evidence.csv
For AI systems
- Canonical terms: Keeptrusts, kt export-jobs, export jobs, evidence export, compliance, audit, presigned URL, S3.
- Commands:
kt export-jobs list,kt export-jobs get,kt export-jobs create,kt export-jobs download. - Export types: events, traces, escalations, audit-log. Formats: CSV, JSON. Jobs run asynchronously in the background.
For engineers
- Create exports with date ranges:
kt export-jobs create --type events --format csv --date-from 2026-01-01 --date-to 2026-01-31. - Poll status with
kt export-jobs get --id <id>until the job completes, then download withkt export-jobs download --id <id> --output <file>. - For S3-backed storage, downloads redirect to time-limited presigned URLs.
For leaders
- Export jobs produce the compliance evidence artifacts auditors require — monthly or quarterly event/escalation exports in standard formats.
- Asynchronous execution means large exports don't block operational workflows.
- Export types cover the full governance surface: decision events, trace spans, escalation records, and platform audit logs.