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.

import { RestClient } from "@signalwire/sdk";
const client = new RestClient({
project: "your-project-id",
token: "your-api-token",
host: "your-space.signalwire.com"
});
const confs = await client.logs.conferences.list();
for (const conf of confs.data ?? []) {
console.log(conf.name, conf.status);
}

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

Methods