/
/PrusaLink Web
ChangesDocsSign in
Sign in
  • APIs
  • Generators
  • Stacks
  • Projects
  • Docs
  • History
  • Schema
Checked 2h 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.

Retrive a mock of octoprinter printer profile

get/api/printerprofiles

Response

OK

Example response

{
  "profiles": {
    "_default": {
      "id": "_default",
      "name": "Original Prusa SL1",
      "model": "Original Prusa SL1",
      "color": "default",
      "current": true,
      "default": true,
      "heatedBed": true,
      "heatedChamber": true,
      "extruder": {
        "count": 1,
        "offsets": [
          [
            0,
            0
          ]
        ]
      },
      "resource": "http://localhost/api/printerprofiles/_default"
    }
  }
}

Changes