Skip to main content
GET
/
v1
/
export-jobs
/
{jobId}
/
download
Download export file
curl --request GET \
  --url https://matcher.sandbox.lerian.net/v1/export-jobs/{jobId}/download \
  --header 'Authorization: Bearer <token>'
{
  "downloadUrl": "https://storage.example.com/exports/report.csv?token=abc",
  "fileName": "matched_report.csv",
  "sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
  "expiresIn": 3600
}

Documentation Index

Fetch the complete documentation index at: https://docs.lerian.studio/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer token authentication (format: "Bearer {token}")

Headers

X-Request-Id
string

A unique identifier for tracing the request across services.

Path Parameters

jobId
string
required

Export Job ID

Response

Export download details

Presigned download URL and metadata for an export job file

downloadUrl
string

Presigned URL to download the export file

Example:

"https://storage.example.com/exports/report.csv?token=abc"

fileName
string

Original file name of the export

Example:

"matched_report.csv"

sha256
string

SHA-256 checksum of the file for integrity verification

Example:

"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"

expiresIn
integer

Duration in seconds until the download URL expires

Example:

3600