VideoConferences

View as MarkdownOpen in Claude

Manage video conferences with full CRUD operations, token listing, and stream management. Uses PUT for updates (full replacement).

Access via client.video.conferences on a RestClient instance.

import { RestClient } from "@signalwire/sdk";
const client = new RestClient({
project: "your-project-id",
token: "your-api-token",
host: "your-space.signalwire.com",
});
const conferences = await client.video.conferences.list();

Methods