--- title: "Delete room ABAC attribute key" slug: "delete-room-abac-attribute-key" status: "update" updated: 2026-09-15T13:58:56Z published: 2026-09-15T13:58:56Z canonical: "developer.rocket.chat/delete-room-abac-attribute-key" --- > ## Documentation Index > Fetch the complete documentation index at: https://developer.rocket.chat/llms.txt > Use this file to discover all available pages before exploring further. # Delete room ABAC attribute key Delete/api/v1/abac/rooms/:rid/attributes/:key![Defense](https://raw.githubusercontent.com/RocketChat/Rocket.Chat-Open-API/main/images/Defense.svg) - Removes a single ABAC attribute key from a room. - Deletes the specified attribute key and all its values from the room's ABAC configuration, leaving other attributes unchanged. - Requires the `abac-management` and `manage-abac-admin-rooms` permissions. ### Changelog | Version | Description | | --- | --- | | 8.0.0 | Added | | 8.5.0 | Added the `manage-abac-admin-rooms` granular permission requirement. | Header parametersX-Auth-TokenstringRequired The `authToken` of the authenticated user. ExampleRScctEHSmLGZGywfIhWyRpyofhKOiMoUIpimhvheU3f X-User-IdstringRequired The `userId` of the authenticated user. ExamplerbAXPnMktTFbNpwtJ Responses200 OK Success ```json { "success": true } ``` object successboolean 400 Bad Request Room not found ```json { "success": false, "error": "error-room-not-found" } ``` object successboolean errorstring 401 Unauthorized Unauthorized login attempt ```json { "success": false, "error": "error-unauthorized" } ``` object successboolean errorstring 403 Forbidden Missing required ABAC permissions ```json { "success": false, "error": "error-not-authorized" } ``` object successboolean errorstring