delete_sip_endpoint

View as MarkdownOpen in Claude

Delete a SIP endpoint for a subscriber.

Path parameters

idstringRequiredformat: "uuid"
Unique ID of a Sip Endpoint.
fabric_subscriber_idstringRequiredformat: "uuid"
Unique ID of a Fabric Subscriber.

Response

Example

from signalwire.rest import RestClient
client = 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")