Skip to main content
GET
/
api
/
v1
/
analytics
/
schedules
/
upcoming
Get all upcoming scheduled runs in a date range
curl --request GET \
  --url https://dashboard.sequentum.com/api/v1/analytics/schedules/upcoming \
  --header 'Authorization: Bearer <token>'
[
  {
    "scheduleId": 123,
    "agentId": 123,
    "agentName": "<string>",
    "scheduleName": "<string>",
    "nextRunTime": "2023-11-07T05:31:56Z",
    "timezone": "<string>",
    "isEnabled": true
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.sequentum.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API Key authorization header. Example: "Authorization: ApiKey {your-api-key}"

Authorization
string
header
required

OAuth 2.0 Bearer token. Example: "Authorization: Bearer {access-token}"

Query Parameters

startDate
string<date-time>

Start date for the range (ISO format)

endDate
string<date-time>

End date for the range (ISO format)

Response

Returns the list of upcoming scheduled runs

scheduleId
integer<int64>
agentId
integer<int32>
agentName
string | null
scheduleName
string | null
nextRunTime
string<date-time> | null
timezone
string | null
isEnabled
boolean