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