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