action n_auth_delete_server_attribute { label: "Delete specific attribute of a specific server" description: "Delete attribute with the specified key of a specific server. Required permission: 'servers'." provider: n_auth method: DELETE path: "/servers/{serverid}/attributes/{attributekey}" encoding: json input: { type: "object" properties: { attributekey: { type: "string" } serverid: { type: "string" } } required: ["attributekey", "serverid"] additionalProperties: false } output: { type: "object" additionalProperties: true } }