Resources

View as MarkdownOpen in Claude

Generic resource operations that work across all Fabric resource types. Provides list, get, and delete operations plus address listing and route assignment.

Access via client.fabric.resources 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 items = await client.fabric.resources.list();

Methods