SKU

get
Authorizations
Query parameters
skucodesstringOptional

Comma-separated list of SKU Codes.

limitintegerOptional
skipintegerOptional
searchtextstringOptional
Responses
200
200 OK
application/json
get
GET /api/sku HTTP/1.1
Host: demo.busroot.com
X-API-KEY: YOUR_API_KEY
Accept: */*
{
  "isSuccess": true,
  "results": [
    {
      "code": "text",
      "name": "text",
      "cycleTime": 1,
      "specifications": [
        {
          "name": "text",
          "value": "text"
        }
      ],
      "instructionsUrl": "text",
      "lineSpeedTarget": 1,
      "downtimeDurationThresholdMultiplier": 1,
      "allowUseInQuickSchedule": true,
      "unitsPerMinute": 1,
      "unitsPerHour": 1,
      "batchSize": 1,
      "value": 1,
      "minimumCycleTime": 1
    }
  ],
  "paging": {
    "totalElements": 1
  }
}
post
Authorizations
Body
codestring · min: 1 · max: 32RequiredPattern: ^([a-zA-Z0-9.\\/-]+)$
namestring · min: 1 · max: 128Required
cycleTimenumber | nullableOptional
specificationsany of | nullableOptional
or
instructionsUrlstring · uri | nullableOptional
lineSpeedTargetnumber | nullableOptional
downtimeDurationThresholdMultipliernumber | nullableOptional
allowUseInQuickSchedulebooleanOptionalDefault: true
unitsPerMinutenumber | nullableOptional
unitsPerHournumber | nullableOptional
batchSizenumber | nullableOptional
valuenumber | nullableOptional
minimumCycleTimeinteger | nullableOptional
Responses
200
200 OK
application/json
post
POST /api/sku HTTP/1.1
Host: demo.busroot.com
X-API-KEY: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 309

{
  "code": "text",
  "name": "text",
  "cycleTime": 1,
  "specifications": [
    {
      "ANY_ADDITIONAL_PROPERTY": "text"
    }
  ],
  "instructionsUrl": "https://example.com",
  "lineSpeedTarget": 1,
  "downtimeDurationThresholdMultiplier": 1,
  "allowUseInQuickSchedule": true,
  "unitsPerMinute": 1,
  "unitsPerHour": 1,
  "batchSize": 1,
  "value": 1,
  "minimumCycleTime": 1
}
{
  "isSuccess": true,
  "results": [
    {
      "code": "text",
      "name": "text",
      "specifications": "text",
      "instructionsUrl": "text",
      "accountId": "text",
      "downtimeDurationThresholdMultiplier": 1,
      "allowUseInQuickSchedule": true,
      "cycleTime": 1,
      "lineSpeedTarget": 1,
      "unitsPerMinute": 1,
      "unitsPerHour": 1,
      "batchSize": 1,
      "createdAt": "text",
      "updatedAt": "text",
      "value": 1,
      "minimumCycleTime": 1
    }
  ]
}
delete
Authorizations
Path parameters
codestring · min: 1 · max: 32RequiredPattern: ^([a-zA-Z0-9.\\/-]+)$
Responses
204
204 No Content
delete
DELETE /api/sku/{code} HTTP/1.1
Host: demo.busroot.com
X-API-KEY: YOUR_API_KEY
Accept: */*

No content