Downtime

get
Authorizations
Query parameters
stationcodesany ofOptional
stringOptional
or
string[]Optional
rangecodestringOptional
plantcodestring · min: 1Optional
idintegerOptional
limitinteger · max: 1000Optional
Responses
200
200 OK
application/json
get
GET /api/issue HTTP/1.1
Host: qa.eu-west-2-2.busroot.opind.co
X-API-KEY: YOUR_API_KEY
Accept: */*
{
  "isSuccess": true,
  "results": [
    {
      "id": 1,
      "type": "stop",
      "stationCode": "text",
      "startAt": "text",
      "endAt": "text",
      "createdAt": "text",
      "updatedAt": "text",
      "startNotifiedAt": "text",
      "endNotifiedAt": "text",
      "accountId": "text",
      "excludedAt": "text",
      "events": [
        {
          "id": 1,
          "downtimeId": 1,
          "type": "acknowledge",
          "userId": 1,
          "estimateEndAt": "text",
          "notifiedAt": "text",
          "causeCode": "text",
          "accountId": "text",
          "createdAt": "text",
          "updatedAt": "text",
          "operatorInitials": "text",
          "userEmail": "text"
        }
      ],
      "isAcknowledged": true,
      "isEstimated": true,
      "isEscalated": true,
      "hasCause": true,
      "causeCode": "text",
      "estimateEndAt": "text",
      "ragStatus": "red",
      "statusText": "text",
      "stationName": "text",
      "causeBreadcrumb": [
        {
          "code": "text",
          "description": "text",
          "parentCauseCode": "text"
        }
      ],
      "startAtTimestamp": 1,
      "endAtTimestamp": 1,
      "duration": 1,
      "durationFormatted": "text",
      "skuCode": "text",
      "skuName": "text",
      "isOngoing": true
    }
  ]
}
post
Authorizations
Body
typestring · enumRequiredPossible values:
stationCodestring · min: 1 · max: 32RequiredPattern: ^([a-zA-Z0-9-_]+)$
startAtstring · date-timeRequired
endAtstring · date-timeOptional
Responses
200
200 OK
application/json
post
POST /api/issue HTTP/1.1
Host: qa.eu-west-2-2.busroot.opind.co
X-API-KEY: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 108

{
  "type": "stop",
  "stationCode": "text",
  "startAt": "2025-06-27T08:59:54.248Z",
  "endAt": "2025-06-27T08:59:54.248Z"
}
{
  "isSuccess": true,
  "results": [
    {
      "id": 1,
      "type": "stop",
      "stationCode": "text",
      "startAt": "text",
      "endAt": "text",
      "createdAt": "text",
      "updatedAt": "text",
      "startNotifiedAt": "text",
      "endNotifiedAt": "text",
      "accountId": "text",
      "excludedAt": "text"
    }
  ]
}
get
Authorizations
Query parameters
plantcodestring · min: 1Required
rangecodestringRequired
stationcodesany ofOptional
stringOptional
or
string[]Optional
Responses
200
200 OK
text/csv
Responsestring
get
GET /api/downtime/csv HTTP/1.1
Host: qa.eu-west-2-2.busroot.opind.co
X-API-KEY: YOUR_API_KEY
Accept: */*
text
get
Authorizations
Query parameters
stationcodesany ofRequired
stringOptional
or
string[]Optional
Responses
200
200 OK
application/json
get
GET /api/downtime/ongoing HTTP/1.1
Host: qa.eu-west-2-2.busroot.opind.co
X-API-KEY: YOUR_API_KEY
Accept: */*
{
  "isSuccess": true,
  "results": [
    {
      "id": 1,
      "type": "stop",
      "stationCode": "text",
      "startAt": "text",
      "endAt": "text",
      "createdAt": "text",
      "updatedAt": "text",
      "startNotifiedAt": "text",
      "endNotifiedAt": "text",
      "accountId": "text",
      "excludedAt": "text",
      "events": [
        {
          "id": 1,
          "downtimeId": 1,
          "type": "acknowledge",
          "userId": 1,
          "estimateEndAt": "text",
          "notifiedAt": "text",
          "causeCode": "text",
          "accountId": "text",
          "createdAt": "text",
          "updatedAt": "text",
          "operatorInitials": "text",
          "userEmail": "text"
        }
      ],
      "isAcknowledged": true,
      "isEstimated": true,
      "isEscalated": true,
      "hasCause": true,
      "causeCode": "text",
      "estimateEndAt": "text",
      "ragStatus": "red",
      "statusText": "text",
      "stationName": "text",
      "causeBreadcrumb": [
        {
          "code": "text",
          "description": "text",
          "parentCauseCode": "text"
        }
      ],
      "startAtTimestamp": 1,
      "endAtTimestamp": 1,
      "duration": 1,
      "durationFormatted": "text",
      "skuCode": "text",
      "skuName": "text",
      "isOngoing": true
    }
  ]
}
get
Authorizations
Query parameters
stationcodesany ofRequired
stringOptional
or
string[]Optional
rangecodestringRequired
Responses
200
200 OK
application/json
get
GET /api/downtime/unreported-downtime/count HTTP/1.1
Host: qa.eu-west-2-2.busroot.opind.co
X-API-KEY: YOUR_API_KEY
Accept: */*
{
  "isSuccess": true,
  "results": [
    {
      "stationCode": "text",
      "count": 1
    }
  ]
}
get
Authorizations
Query parameters
codesstringOptional
Responses
200
200 OK
application/json
get
GET /api/downtime/cause HTTP/1.1
Host: qa.eu-west-2-2.busroot.opind.co
X-API-KEY: YOUR_API_KEY
Accept: */*
{
  "isSuccess": true,
  "results": [
    {
      "code": "text",
      "description": "text",
      "parentCauseCode": "text"
    }
  ]
}
post
Authorizations
Body
codestring · min: 1Required
descriptionstring · min: 1Required
parentCauseCodestring | nullableOptional
Responses
200
200 OK
application/json
post
POST /api/downtime/cause HTTP/1.1
Host: qa.eu-west-2-2.busroot.opind.co
X-API-KEY: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 61

{
  "code": "text",
  "description": "text",
  "parentCauseCode": "text"
}
{
  "isSuccess": true,
  "result": {
    "code": "text",
    "description": "text",
    "accountId": "text",
    "parentCauseCode": "text",
    "createdAt": "text",
    "updatedAt": "text"
  }
}
get
Authorizations
Responses
200
200 OK
text/csv
Responsestring
get
GET /api/downtime/cause/csv HTTP/1.1
Host: qa.eu-west-2-2.busroot.opind.co
X-API-KEY: YOUR_API_KEY
Accept: */*
text
delete
Authorizations
Path parameters
codestring · min: 1Required
Responses
204
204 No Content
delete
DELETE /api/downtime/cause/{code} HTTP/1.1
Host: qa.eu-west-2-2.busroot.opind.co
X-API-KEY: YOUR_API_KEY
Accept: */*

No content

post
Authorizations
Path parameters
idintegerRequired
Body
typestring · enumRequiredPossible values:
estimatedTimenumberOptional
causeCodestring · min: 1Optional
operatorstringOptional
Responses
200
200 OK
application/json
post
POST /api/downtime/{id}/event HTTP/1.1
Host: qa.eu-west-2-2.busroot.opind.co
X-API-KEY: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 77

{
  "type": "acknowledge",
  "estimatedTime": 1,
  "causeCode": "text",
  "operator": "text"
}
{
  "isSuccess": true
}
get
Authorizations
Query parameters
plantcodestring · min: 1Required
rangecodestringRequired
aggregatewindowstringOptional
stationcodesany ofOptional
stringOptional
or
string[]Optional
skucodesany ofOptional
stringOptional
or
string[]Optional
includefuturestring · min: 1Optional
inshiftaveragesbooleanOptional
Responses
200
200 OK
application/json
get
GET /api/downtime HTTP/1.1
Host: qa.eu-west-2-2.busroot.opind.co
X-API-KEY: YOUR_API_KEY
Accept: */*
{
  "isSuccess": true,
  "results": [
    {
      "stationCode": "text",
      "stationName": "text",
      "stationGroupCode": "text",
      "stationGroupName": "text",
      "reliabilityData": {
        "runningsCount": 1,
        "stopsCount": 1,
        "totalRunningTime": 1,
        "totalStoppedTime": 1
      },
      "cycleTimeAnalysis": {
        "avg": 1,
        "min": 1,
        "max": 1,
        "quantity": 1,
        "default": 1,
        "stations": [
          {
            "stationCode": "text",
            "stationName": "text",
            "avg": 1,
            "min": 1,
            "max": 1,
            "quantity": 1
          }
        ]
      },
      "oee": {
        "scheduleDuration": 1,
        "scheduleLossDuration": 1,
        "schedulePerc": 1,
        "productionScheduleDuration": 1,
        "productionScheduleLossDuration": 1,
        "productionSchedulePerc": 1,
        "availabilityDuration": 1,
        "availabilityLossDuration": 1,
        "availabilityPerc": 1,
        "performanceTargetCount": 1,
        "performanceTargetLossCount": 1,
        "performanceTargetPerc": 1,
        "goodQualityCount": 1,
        "goodQualityLossCount": 1,
        "goodQualityPerc": 1,
        "scheduledNonProduction": [
          {
            "code": "text",
            "description": "text",
            "duration": 1,
            "cost": 1,
            "percent": 1
          }
        ],
        "stops": [
          {
            "code": "text",
            "description": "text",
            "duration": 1,
            "cost": 1,
            "percent": 1
          }
        ],
        "oee": 1
      },
      "downtimes": [
        {
          "type": "stop",
          "stationCode": "text",
          "reasonCode": "text",
          "startTimestamp": 1,
          "endTimestamp": 1,
          "range": {
            "from": 1,
            "to": 1,
            "duration": 1,
            "fromIso": "text",
            "toIso": "text",
            "durationFormatted": "text"
          }
        }
      ]
    }
  ],
  "range": {
    "from": 1,
    "to": 1,
    "duration": 1,
    "fromIso": "text",
    "toIso": "text",
    "durationFormatted": "text"
  }
}