action n_auth_get_server_privileged_attributes { label: "Get all privileged attributes of a specific server" description: "Returns an array containing all privileged attributes corresponding to this server. Required permission: global 'servers'." provider: n_auth method: GET path: "/servers/{serverid}/privilegedattributes/" encoding: json input: { type: "object" properties: { serverid: { type: "string" } } required: ["serverid"] additionalProperties: false } output: { type: "object" additionalProperties: true } }