Server SDKs
Build AI agents, control calls, send messages, and more
Manage video rooms. Full CRUD operations with PUT-based updates, plus stream management.
Access via client.video.rooms on a RestClient instance.
client.video.rooms
RestClient
1import { RestClient } from "@signalwire/sdk";23const client = new RestClient({4 project: "your-project-id",5 token: "your-api-token",6 host: "your-space.signalwire.com",7});89const items = await client.video.rooms.list();
List video rooms.
Create a new video room.
Retrieve a single video room.
Update a video room.
Delete a video room.
List streams for a video room.
Create a stream for a video room.