Saltar al contenido 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
}

Autorizaciones

Authorization
string
header
requerido

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

Encabezados

X-Request-Id
string

A unique identifier for tracing the request across services.

Parámetros de ruta

jobId
string
requerido

Export Job ID

Respuesta

Export download details

Presigned download URL and metadata for an export job file

downloadUrl
string

Presigned URL to download the export file

Ejemplo:

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

fileName
string

Original file name of the export

Ejemplo:

"matched_report.csv"

sha256
string

SHA-256 checksum of the file for integrity verification

Ejemplo:

"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"

expiresIn
integer

Duration in seconds until the download URL expires

Ejemplo:

3600