mirror of
https://github.com/gosticks/octoprint-open-api.git
synced 2025-10-16 11:45:38 +00:00
26 lines
611 B
YAML
26 lines
611 B
YAML
summary: Update a user’s settings
|
||
operationId: updateUserSettings
|
||
tags:
|
||
- User
|
||
description: >-
|
||
Retrieves a user’s settings.
|
||
Will return a 200 OK with a JSON object representing the user’s personal settings (if any) as body.
|
||
parameters:
|
||
- $ref: ../../../components/parameters/username.yaml
|
||
requestBody:
|
||
content:
|
||
application/json:
|
||
schema:
|
||
type: object
|
||
additionalProperties: true
|
||
responses:
|
||
"204":
|
||
description: >-
|
||
Settings updated
|
||
"403":
|
||
description: >-
|
||
No admin rights and not logged in as the user
|
||
"404":
|
||
description: >-
|
||
Unknown user
|