action n_auth_set_server_privileged_attributes { label: "Set all privileged attributes of a specific server" description: "Set the privileged attributes of a specific server. Prior attributes with keys that are not provided in the body of the request will be deleted. Required permission: global 'servers'." provider: n_auth method: POST path: "/servers/{serverid}/privilegedattributes/" encoding: json input: { type: "object" properties: { serverid: { type: "string" } } required: ["serverid"] additionalProperties: false } output: { type: "object" additionalProperties: true } }