G-Code file API
GET /api/v1/g_code_files/β
Requestβ
Query parametersβ
page: Which page of objects to return. For pagination.page_size: The number of objects to return. For pagination.
Responseβ
Successβ
- Code:
200 - Body: A
ListofGCodeFileobjects.
GET /api/v1/g_code_files/{:id}/β
Requestβ
Query parametersβ
None.
Responseβ
Successβ
- Code:
200 - Body: A
GCodeFileobjects.
Not foundβ
When the G-Code file specified by the {:id} doesn't exist, or the access is not authorized by the authenticated user.
- Code:
404
DELETE /api/v1/g_code_files/{:id}/β
Delete the GCodeFile object specified by {:id}
Responseβ
Successβ
- Code:
200 - Body: Empty.
Not foundβ
When the G-Code file specified by the {:id} doesn't exist, or the access is not authorized by the authenticated user.
- Code:
404