/
/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.

Retrieve all files’ and folders’ information for the target location.

get/api/files/{target}

Query parameters

recursiveboolean

Headers

If-None-Matchstring

ETag

Response

OK

freeinteger
totalinteger

Example response

{
  "files": [
    {
      "origin": "local",
      "size": 873151
    }
  ]
}

Changes