Server SDKs
Build AI agents, control calls, send messages, and more
Manage LAML bins with CRUD operations. LAML bins store reusable cXML/LaML scripts that can be referenced by URL in call and message handling.
Access via client.compat.lamlBins on a RestClient instance.
client.compat.lamlBins
RestClient
1import { RestClient } from "@signalwire/sdk";23const client = new RestClient({4 project: "your-project-id",5 token: "your-api-token",6 host: "your-space.signalwire.com",7});89const bins = await client.compat.lamlBins.list();
List LAML bins in the account.
Create a new LAML bin.
Retrieve a single LAML bin by SID.
Update a LAML bin.
Delete a LAML bin.