REST ClientFabricSubscribersdeleteSipEndpointCopy page|View as Markdown|Open in Claude|More actionsDelete a SIP endpoint for a subscriber. Path parametersidstringRequiredformat: "uuid"Unique ID of a Sip Endpoint.fabric_subscriber_idstringRequiredformat: "uuid"Unique ID of a Fabric Subscriber.Response Example 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");