Pular para o conteúdo principal
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.

Autorizações

Authorization
string
header
obrigatório

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

Cabeçalhos

X-Request-Id
string

A unique identifier for tracing the request across services.

Parâmetros de caminho

jobId
string
obrigatório

Export Job ID

Resposta

Export download details

Presigned download URL and metadata for an export job file

downloadUrl
string

Presigned URL to download the export file

Exemplo:

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

fileName
string

Original file name of the export

Exemplo:

"matched_report.csv"

sha256
string

SHA-256 checksum of the file for integrity verification

Exemplo:

"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"

expiresIn
integer

Duration in seconds until the download URL expires

Exemplo:

3600