Printago API
PATCH /v1/maintenance/items/{id}

Update maintenance item

Update a maintenance item

Requires: maintenance.edit

Path Parameters

id required
string

Request Body

PartialPickMaintenanceItemnametriggerTypeintervalwarningThresholdPctnotes
intervaloptional
number
nameoptional
string
notesoptional
string
triggerTypeoptional
any
warningThresholdPctoptional
number

Example Request

application/json
{
  "name": "string",
  "interval": 1,
  "warningThresholdPct": 1
}

Response Schema

MaintenanceItem
createdAtrequired
string
format: date-time
idrequired
string
pattern: ^[a-z0-9]{24}$
intervalrequired
number
isSystemDefaultrequired
boolean
namerequired
string
notesrequired
string
storeIdrequired
string
pattern: ^[a-z0-9]{24}$
triggerTyperequired
any
updatedAtrequired
string
format: date-time
warningThresholdPctrequired
number

Example Response

200 OK — application/json
{
  "name": "string",
  "interval": 1,
  "warningThresholdPct": 1,
  "isSystemDefault": true,
  "id": "string",
  "storeId": "string",
  "createdAt": "2026-08-24T03:58:55.536Z",
  "updatedAt": "2026-08-24T03:58:55.536Z"
}