***

title: delete
slug: /reference/typescript/rest/compat/laml-bins/delete
description: Delete a LAML bin.
max-toc-depth: 3
---------------------

For a complete index of all SignalWire documentation pages, fetch https://signalwire.com/docs/llms.txt

Delete a LAML bin.

<EndpointSchemaSnippet endpoint="DELETE /Accounts/{AccountSid}/LamlBins/{Sid}" />

## **Example**

```typescript {9}
import { RestClient } from "@signalwire/sdk";

const client = new RestClient({
  project: "your-project-id",
  token: "your-api-token",
  host: "your-space.signalwire.com",
});

await client.compat.lamlBins.delete("LB...");
```