***

title: deleteSipEndpoint
slug: /reference/typescript/rest/fabric/subscribers/delete-sip-endpoint
description: Delete a SIP endpoint for a subscriber.
max-toc-depth: 3
---------------------

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

Delete a SIP endpoint for a [subscriber](/docs/platform/subscribers).

<EndpointSchemaSnippet endpoint="DELETE /api/fabric/resources/subscribers/{fabric_subscriber_id}/sip_endpoints/{id}" />

## **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.fabric.subscribers.deleteSipEndpoint("subscriber-id", "endpoint-id");
console.log("SIP endpoint deleted");
```