Decision Dossier
Use a Decision Dossier when you need the governed evidence for one decision, one case, or one workflow outcome. It is the per-decision proof surface.
A validation pack is the org-level evidence bundle for Decionis. Use it when a policy team, auditor, or regulator needs a downloadable record of governance activity, export integrity, and current evidence posture, rather than one per-decision Decision Dossier.
Decision Dossiers and validation packs solve different evidence problems.
Use a Decision Dossier when you need the governed evidence for one decision, one case, or one workflow outcome. It is the per-decision proof surface.
Use a validation pack when you need the org-level evidence bundle: export metadata, hashes, current readiness posture, and optional workflow event coverage suitable for audit or supervisory review.
| Need | Best surface |
|---|---|
| Verify one governed action | /docs/decision-dossier |
| Download org-level regulator evidence | /docs/validation-packs |
| Review current policy mapping and onboarding state | /docs/quickstart |
These routes are available to org-scoped callers with audit read/write scope.
/v1/orgs/:orgId/audit-exportsAPI keyQueue a new validation pack build in JSON, CSV, or PDF. Set include_events to false if you want a leaner bundle without workflow events.
curl -X POST https://api.decionis.com/v1/orgs/<org_id>/audit-exports \
-H "Authorization: Bearer dcy_org_xxx" \
-H "Content-Type: application/json" \
-d '{
"format": "json",
"include_events": true
}'/v1/orgs/:orgId/audit-exports?limit=8API keyList recent validation packs so the workspace can reopen and download earlier evidence bundles.
/v1/orgs/:orgId/audit-exports/:exportIdAPI keyRead export status, manifest hash, bundle hash, and last error for one validation pack.
/v1/orgs/:orgId/audit-exports/:exportId/downloadAPI keyDownload the built artifact once the export status is SUCCEEDED.
A validation pack is intentionally an evidence bundle, not a hidden service export.
| Field | Meaning |
|---|---|
| status | PENDING, RUNNING, SUCCEEDED, or FAILED export state. |
| include_events | Whether the export includes workflow and event-log coverage. |
| manifest_sha256 | Hash of the export manifest metadata. |
| bundle_sha256 | Integrity hash of the generated downloadable artifact. |
| bundle_signature_hmac_sha256 | Signature fingerprint recorded with the generated bundle. |
| completed_at | Completion timestamp for the final downloadable pack. |
This is the common pattern after the workspace is live and using an org API key.
# 1. Queue a validation pack
curl -X POST https://api.decionis.com/v1/orgs/<org_id>/audit-exports \
-H "Authorization: Bearer dcy_org_xxx" \
-H "Content-Type: application/json" \
-d '{"format":"pdf","include_events":true}'
# 2. Poll the export row
curl https://api.decionis.com/v1/orgs/<org_id>/audit-exports/<export_id> \
-H "Authorization: Bearer dcy_org_xxx"
# 3. Download the finished artifact
curl https://api.decionis.com/v1/orgs/<org_id>/audit-exports/<export_id>/download \
-H "Authorization: Bearer dcy_org_xxx" \
-o decionis-validation-pack.pdf| Companion surface | Reason |
|---|---|
| Decision Dossier | Per-decision proof and public verification link. |
| Policy Encoding | Version boundary for the policy logic referenced by the pack. |
| Quickstart | Docs-led zero-onboarding flow that issues the org key used here. |