πSearching Rooms
Below, you can find the parameters you can use when searching for rooms:
Parameter
Type
Description
query
string
Search keyword (searches in room name)
creator_email
string
Filter by creator's email address
created_after
string
Creation date start
created_before
string
Creation date end
user_id
string
Filter by specific user ID
page
int
Page number (default: 1)
size
int
Page size (default: 20, max: 100)
sort
string
Sorting (default: created_date desc)
Example request:
curl -L -X GET 'https://<DOMAIN>/xapi/v2/room/search' \
-H 'Content-Type: application/json' \
-G \
-d 'query=test' \
-d '[email protected]' \
-d 'page=1' \
-d 'page_size=10' \
-d 'created_after=2025-01-01T00:00:00Z' \
-d 'created_before=2025-12-31T23:59:59Z'Example response:
Last updated
Was this helpful?