Voice Logs

View as MarkdownOpen in Claude

Query voice call log entries. Voice logs provide a read-only view of call activity in your project, including per-call event timelines.

Access via client.logs.voice 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 logs = await client.logs.voice.list({ pageSize: 5 });
for (const log of logs.data ?? []) {
console.log(log.id, log.from, "->", log.to);
}

Methods