action n_auth_update_user_attributes { label: "Update specified attributes of a specific user" description: "Update the specified attributes of a specific user. Prior attributes with keys that are not provided in the body of the request will not be deleted. Required permission: 'users'." provider: n_auth method: PUT path: "/servers/{serverid}/users/{userid}/attributes/" encoding: json input: { type: "object" properties: { serverid: { type: "string" } userid: { type: "string" } } required: ["serverid", "userid"] additionalProperties: false } output: { type: "object" additionalProperties: true } }