Skip to main content
POST
/
v1
/
contexts
/
{contextId}
/
export-jobs
Create an export job
curl --request POST \
  --url https://matcher.sandbox.lerian.net/v1/contexts/{contextId}/export-jobs \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "dateFrom": "<string>",
  "dateTo": "<string>",
  "format": "CSV",
  "reportType": "MATCHED",
  "sourceId": "<string>"
}
'
{
  "jobId": "<string>",
  "status": "<string>",
  "statusUrl": "<string>"
}

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

contextId
string
required

The unique identifier of the reconciliation context.

Body

application/json

Export job parameters

dateFrom
string
required
dateTo
string
required
format
enum<string>
required
Available options:
CSV,
JSON,
XML
reportType
enum<string>
required
Available options:
MATCHED,
UNMATCHED,
SUMMARY,
VARIANCE
sourceId
string

Response

Indicates that the request was accepted for processing.

jobId
string
status
string
statusUrl
string