Skip to main content
GET
/
v1
/
contexts
/
{contextId}
/
export-jobs
List export jobs by context
curl --request GET \
  --url https://matcher.sandbox.lerian.net/v1/contexts/{contextId}/export-jobs \
  --header 'Authorization: Bearer <token>'
{
  "hasMore": true,
  "jobs": [
    {
      "bytesWritten": 123,
      "createdAt": "<string>",
      "downloadUrl": "<string>",
      "error": "<string>",
      "expiresAt": "<string>",
      "fileName": "<string>",
      "finishedAt": "<string>",
      "format": "<string>",
      "id": "<string>",
      "recordsWritten": 123,
      "reportType": "<string>",
      "startedAt": "<string>",
      "status": "<string>"
    }
  ],
  "limit": 20,
  "nextCursor": "eyJpZCI6IjEyMyJ9",
  "prevCursor": "eyJpZCI6IjEyMiJ9"
}

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.

Query Parameters

limit
integer
default:20

The maximum number of items to include in the response.

Required range: 1 <= x <= 200
cursor
string

The cursor value for retrieving the next page of results.

Response

List of export jobs for the context

hasMore
boolean
Example:

true

jobs
object[]
limit
integer
Required range: 1 <= x <= 200
Example:

20

nextCursor
string
Example:

"eyJpZCI6IjEyMyJ9"

prevCursor
string
Example:

"eyJpZCI6IjEyMiJ9"