Hello,
I’ve enabled the setting that allows special chars in room names and am successfully able to create room names with spaces in them.
I would now like to hit the groups.info endpoint using the query param roomName.
However, this is the url that’s generated:
https://my-rc-server-endpoint/api/v1/groups.info?roomName=random%20room%20name
and the response that’s received:
{
"success": false,
"error": "The required \"roomId\" or \"roomName\" param provided does not match any group [error-room-not-found]",
"errorType": "error-room-not-found"
}
So I’m guessing that I’m going to have to use the roomId to get the room information or is there still a way to query groups.info using the roomName of a room that has spaces in its name?