List lobbies
GET/lobby.list
Lists active lobbies in your account.
A lobby URL has the form ro.am/{handle} or ro.am/{handle}/{slug}.
- The "handle" is the first path segment
- The "slug" is the optional second path segment. It may be empty for the default lobby under a handle
Optionally filter by a specific lobby handle. If provided, only lobbies associated with that handle are returned.
This endpoint is not paginated. The 200 body is { "lobbies": [...] }
with every matching lobby; there is no cursor / nextCursor and no
data array. The TypeScript SDK returns that object directly, not a
page helper.
Access: Organization and Personal.
Required scope: lobby:read
OpenAPI Spec: chat-v1.json
Request
Responses
- 200
- 400
- 401
- 404
- 405
- 500
OK
Bad request.
Presented invalid authentication credentials.
Handle not found.
An unsupported method was requested.
An internal error occurred.