Overview

The Exports API provides cloud export capabilities for uploading evidence packages and mandate data to external storage destinations including AWS S3, Google Cloud Storage (GCS), and Azure Blob Storage.

Endpoints

MethodPathDescription
POST/exports/evidenceExport evidence to external storage (s3/gcs/azure)
GET/exportsList export history

Example

curl -X POST http://localhost:4000/exports/evidence \
  -H "Content-Type: application/json" \
  -d '{"evidence_package_id":"...","destination":"s3","bucket":"my-bucket"}'