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