Document the slicer/setting DELETE route and clarify a few field semantics - #71
Open
pascalprey wants to merge 1 commit into
Open
Document the slicer/setting DELETE route and clarify a few field semantics#71pascalprey wants to merge 1 commit into
pascalprey wants to merge 1 commit into
Conversation
…mantics
Add the DELETE /v1/iot-service/api/slicer/setting/{SETTING_ID} route, notes on
the private preset quota, and corrections to the my/tasks and user/bind field
descriptions. All verified against a live account in August 2026.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
While cleaning up a Bambu Cloud account that had hit the user-preset limit, I ended up
verifying a couple of things that were either missing from
cloud-http.mdor slightlyoff. All of it was checked against a live account in August 2026 with Bambu Studio
02.07.01.62.
New:
DELETE /v1/iot-service/api/slicer/setting/{SETTING_ID}Deletes a user preset server-side. Returns the usual
{"message": "success"}; afterwardsa
GETon the same id returns HTTP 400 and the entry is gone from theprivatearray.I ran 596 of these in one pass with no failures. This is the route behind
bambu_network_delete_setting, whichbambu_networking.dllexports alongsideget_setting_list,get_setting_list2,put_settingandrequest_setting_id.New: notes on the private preset quota
Bambu Studio complains that the cloud preset limit is exceeded, but offers no way to see
or remove the offending entries when they no longer sync down. Two details that cost me
time and might save someone else's:
print.privatehad stopped at exactly 100 whilefilament.privateheld 499, so I have deliberately not claimed a single number..infofiles are not a mirror of the cloud. An emptyuser_iddoes not meanthe preset is absent server-side, so deleting local files frees no quota.
Clarified:
GET /v1/user-service/my/taskscostTimeis the slice estimate, not the actual runtime. Aborted jobs still carry thefull estimate while
endTime - startTimeis short, so summingcostTimeoverstatesprint hours. I got 206 h that way versus 107 h actual.
status2 = finished, 3 = aborted/failed;failedTypewas 0 in both cases.materialexists but was empty on all 57 tasks; the real filament data sits inamsDetailMapping, whose shape I have documented.existing example).
Clarified:
GET /v1/iot-service/api/user/bindCurrent responses also return
print_job,nozzle_diameteranddev_structure(
I3vsCoreXY). On newer modelsdev_model_namereturns the marketing name (P2S)rather than an internal code like
BL-P001.Happy to adjust the wording or split this up if you would rather have it in separate
commits.