--- title: "Delete all ABAC attributes" slug: "delete-all-abac-attributes" status: "update" updated: 2026-09-15T13:58:42Z published: 2026-09-15T13:58:42Z canonical: "developer.rocket.chat/delete-all-abac-attributes" --- > ## 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 all ABAC attributes Delete/api/v1/abac/rooms/:rid/attributes![Defense](https://raw.githubusercontent.com/RocketChat/Rocket.Chat-Open-API/main/images/Defense.svg) - Clears all ABAC attributes from a room. - Removes every ABAC attribute key and value currently assigned to the specified room, leaving it with no ABAC attributes configured. - Requires the `abac-management` and `manage-abac-admin-rooms` permissions. This call does not require the global setting `ABAC_Enabled` to be on, so attributes can be cleared after disabling ABAC. ### 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