/
/RepRapFirmware
DocsSign in
Sign in
  • APIs
  • Generators
  • Stacks
  • Projects
  • Docs
  • History
  • Schema
Checked 2h ago · Updated 1mo ago
  • getAttempt to create a new connection and log in using the (optional) password
  • getDisconnect again from the RepRapFirmware controller
  • getRetrieve a status response from RepRapFirmware in JSON format. Deprecated in RRF 3.0 and later, use `rr_model` instead
  • getRetrieve the configuration response. This request provides a JSON object with values that are expected to change rarely. Deprecated in RRF 3.0 and later, use rr_model instead
  • getExecute arbitrary G/M/T-code(s)
  • getRetrieve the last G-code reply. The G-code reply is buffered per connected HTTP client and it is discarded when every HTTP client has fetched it or when the firmware is short on memory and the client has not requested it within reasonable time (1 second)
  • getGet the last file upload result
  • postUpload a file
  • getDownload a file
  • getDelete a file or directory
  • getRetrieve a (partial) file list
  • getRetrieve a list of files without any attributes
  • getRetrieve object model information like [M409](https://duet3d.dozuki.com/Wiki/Gcode#Section_M409_Query_object_model). Supported in RRF 3. and later
  • getMove a file or directory
  • getCreate a new directory
  • getParse a G-code job file and return retrieved information. If no file is specified, information about the file being printed is returned
  • getQuery a thumbnail from a G-code file

Download a file

get/rr_download

Query parameters

namestring required

Path to the file to download

Response

Downloaded file

Changes