/
/PrusaLink Web
ChangesDocsSign in
Sign in
  • APIs
  • Generators
  • Stacks
  • Projects
  • Docs
  • History
  • Schema
Checked 28m ago · Updated 2mo ago
  • getversion informations
  • getRetrieve a mock for current connection settings.
  • postIssue a connection command
  • getRetrive a mock of octoprinter printer profile
  • getRetrive the current printer state
  • getRetrieves the current state of the printer’s SD card.
  • getRetrive the error number and text. Not compatible with OctoPrint.
  • getRetrieve information about the current job (if there is one).
  • postIssue a job command.
  • getRetrieves all configured system commands. Currently just a mock.
  • postChange the exposure times
  • postAfter that printer is ready to refill, state should change to "paused".
  • postPrinter should update the resin volume in tank.
  • getRetrieves a list of all registered users in OctoPrint. Currently just a mock.
  • getDownload a file.
  • getRetrieve all files’ and folders’ information.
  • getRetrieve all files’ and folders’ information for the target location.
  • postUpload file or create folder.
  • getRetrieve a specific file’s or folder’s information.
  • postIssue a file command to an existing file.
  • deleteDelete a file or folder.

Retrieve a mock for current connection settings.

get/api/connection

Response

OK

Example response

{
  "current": {
    "baudrate": 115200,
    "port": "VIRTUAL",
    "printerProfile": "_default",
    "state": "Operational"
  },
  "options": {
    "ports": [
      "VIRTUAL"
    ],
    "baudrates": [
      115200
    ],
    "printerProfiles": [
      {
        "id": "_default",
        "name": "Prusa SL1"
      }
    ]
  }
}

Changes