REST ClientFabricSubscribersdelete_sip_endpointCopy 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 from signalwire.rest import RestClientclient = RestClient( project="your-project-id", token="your-api-token", host="your-space.signalwire.com",)client.fabric.subscribers.delete_sip_endpoint("subscriber-id", "endpoint-id")print("SIP endpoint deleted")