Skip to main content
GET
/
v1
/
config
/
contexts
/
{contextId}
/
schedules
List schedules for a context
curl --request GET \
  --url https://matcher.sandbox.lerian.net/v1/config/contexts/{contextId}/schedules \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "id": "019c96a0-2b20-7123-9a1b-2c3d4e5f6a7b",
      "contextId": "019c96a0-2a10-7dfe-b5c1-8a1b2c3d4e5f",
      "cronExpression": "0 0 * * *",
      "enabled": true,
      "lastRunAt": "2025-01-15T10:30:00Z",
      "nextRunAt": "2025-01-16T00:00:00Z",
      "createdAt": "2025-01-15T10:30:00Z",
      "updatedAt": "2025-01-15T10:30:00Z"
    }
  ],
  "cursor": "eyJpZCI6IjAxOWM5NmEwLTJiMjAtNzEyMy05YTFiLTJjM2Q0ZTVmNmE3YiJ9"
}

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 schedules for the context

Paginated list of schedules

items
object[]
Maximum array length: 200
cursor
string

Cursor value to retrieve the next page of results

Example:

"eyJpZCI6IjAxOWM5NmEwLTJiMjAtNzEyMy05YTFiLTJjM2Q0ZTVmNmE3YiJ9"