Retrive the error number and text. Not compatible with OctoPrint.

get/api/printer/error

Response

Custom endpoint to get error details. Client can see if printer is in error state by polling /api/printer

codestring

Prusa error code. Mus be string if we will have printer with code for example 04

titlestring required

Prusa error text string with prefiled variable macros.

textstring required

Prusa error text string with prefiled variable macros.

urlstring

Link to the Prusa help page

Example response

{
  "code": "10108",
  "title": "RESIN TOO LOW",
  "text": "Measured resin volume 22.4 ml is lower than required for this print. Refill the tank and restart the print.",
  "url": "https://help.prusa3d.com/en/10108/LHE3Q0I1"
}

Changes