Skip to main content
GET
/
dashboard
/
upcoming-scheduled-runs
Get upcoming scheduled runs
curl --request GET \
  --url https://api-trial.cognigy.ai/testing/dashboard/upcoming-scheduled-runs \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "simulationReference": "sim-ref-123",
      "simulationName": "Customer Support Flow Test",
      "nextRun": "2024-01-20T10:00:00Z",
      "frequency": "Daily",
      "batchId": "batch-id-456",
      "status": "IN_PROGRESS",
      "frequencyValue": "0 10 * * *",
      "batchName": "Daily Customer Support Test"
    }
  ]
}

Authorizations

Authorization
string
header
required

JWT Bearer Token for authentication

Query Parameters

projectId
string
required

Project identifier

scenarioIds
string[]

Filter by scenario/simulation reference IDs (comma-separated or array). If not provided, includes all scenarios.

limit
integer
default:20

Maximum number of upcoming scheduled runs to return

Required range: 1 <= x <= 100

Response

Upcoming scheduled runs retrieved successfully

data
object[]
required

Array of upcoming scheduled runs

Last modified on July 2, 2026