--- title: "Autocomplete Room Name for Team" slug: "autocomplete-room-name-for-team" status: "update" updated: 2026-09-15T14:08:36Z published: 2026-09-15T14:08:36Z canonical: "developer.rocket.chat/autocomplete-room-name-for-team" --- > ## 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. # Autocomplete Room Name for Team Get/api/v1/rooms.autocomplete.availableForTeams Autocompletes room name available for conversion to team. Header parametersX-Auth-TokenstringRequired The `authToken` of the authenticated user. ExampleRScctEHSmLGZGywfIhWyRpyofhKOiMoUIpimhvheU3f X-User-IdstringRequired The `userId` of the authenticated user. ExamplerbAXPnMktTFbNpwtJ Query parametersnamestringRequired The name of the room Exampledata-loss-prevention Responses200 OK Match error ```json { "items": [ { "_id": "siyr2oWQJBjQjhLwr", "fname": "try", "name": "try", "t": "c" } ], "success": true } ``` Expand Allobject items Array of object object _idstring fnamestring namestring tstring successboolean 401 Unauthorized Authorization Error ```json { "status": "error", "message": "You must be logged in to do this." } ``` object statusstring messagestring