Conference Logs

View as MarkdownOpen in Claude

Query conference log entries. Conference logs provide a read-only view of conference activity in your project.

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

1import { RestClient } from "@signalwire/sdk";
2
3const client = new RestClient({
4 project: "your-project-id",
5 token: "your-api-token",
6 host: "your-space.signalwire.com"
7});
8
9const confs = await client.logs.conferences.list();
10for (const conf of confs.data ?? []) {
11 console.log(conf.name, conf.status);
12}

Conference logs only support list(). There is no get() method for individual conference entries.

Methods