Fax Logs

View as MarkdownOpen in Claude

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

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

Methods