Get Delay Details

GET /public/v1/projects/{projectId}/scenarios/{scenarioId}/delay

Headers

  • X-COMPANY-ID string Required

    The company's unique ID

Path parameters

  • projectId integer(int64) Required
  • scenarioId integer(int64) Required

Responses

  • 500 */*

    Internal Server Error

  • 200 */*

    OK

    Hide response attributes Show response attributes object
    • period integer(int32) Required

      The period number

    • scheduleName string Required

      The name of the schedule

    • dataDate string(date-time) Required

      The data date of the schedule

    • endDate string(date-time) Required

      The scheduled end date of the schedule

    • endDateVariance object Required
      Hide endDateVariance attributes Show endDateVariance attributes object
      • period integer(int64)
      • cumulative integer(int64)
    • criticalPathDelay object Required
      Hide criticalPathDelay attributes Show criticalPathDelay attributes object
      • period integer(int64)
      • cumulative integer(int64)
    • criticalPathRecovery object Required
      Hide criticalPathRecovery attributes Show criticalPathRecovery attributes object
      • period integer(int64)
      • cumulative integer(int64)
    • delayRecovery object Required
      Hide delayRecovery attributes Show delayRecovery attributes object
      • period integer(int64)
      • cumulative integer(int64)
    • filterId integer(int64) Required

      The filter ID applied to the delay table

    • delays array[object] Required

      List of delays

      Hide delays attributes Show delays attributes object
      • activityId string
      • name string
      • days integer(int64)
    • recoveries array[object] Required

      List of recoveries

      Hide recoveries attributes Show recoveries attributes object
      • activityId string
      • name string
GET /public/v1/projects/{projectId}/scenarios/{scenarioId}/delay
curl \
 --request GET 'https://live.smartpmtech.com/public/v1/projects/{projectId}/scenarios/{scenarioId}/delay' \
 --header "X-API-KEY: $API_KEY" \
 --header "X-COMPANY-ID: string"
Response examples (500)
{}
Response examples (200)
[
  {
    "period": 5,
    "scheduleName": "Project Schedule",
    "dataDate": "2023-10-15T00:00:00+00:00",
    "endDate": "2024-12-31T00:00:00+00:00",
    "endDateVariance": {
      "period": 42,
      "cumulative": 42
    },
    "criticalPathDelay": {
      "period": 42,
      "cumulative": 42
    },
    "criticalPathRecovery": {
      "period": 42,
      "cumulative": 42
    },
    "delayRecovery": {
      "period": 42,
      "cumulative": 42
    },
    "filterId": 12345,
    "delays": [
      {
        "activityId": "string",
        "name": "string",
        "days": 42
      }
    ],
    "recoveries": [
      {
        "activityId": "string",
        "name": "string"
      }
    ]
  }
]