Get Schedule Compression Trend

GET /public/v1/projects/{projectId}/scenarios/{scenarioId}/schedule-compression-trend

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
    • dataDate string(date-time)
    • scheduleCompression number(double)
    • scheduleCompressionIndex integer(int64)
    • indicator string

      Values are GOOD, FINE, or BAD.

GET /public/v1/projects/{projectId}/scenarios/{scenarioId}/schedule-compression-trend
curl \
 --request GET 'https://live.smartpmtech.com/public/v1/projects/{projectId}/scenarios/{scenarioId}/schedule-compression-trend' \
 --header "X-API-KEY: $API_KEY" \
 --header "X-COMPANY-ID: string"
Response examples (500)
{}
Response examples (200)
[
  {
    "dataDate": "2025-05-04T09:42:00Z",
    "scheduleCompression": 42.0,
    "scheduleCompressionIndex": 42,
    "indicator": "GOOD"
  }
]