REST ClientQueues

delete

View as MarkdownOpen in Claude

Delete a queue.

Path parameters

idstringRequiredformat: "uuid"
Unique ID of the queue.

Response

Example

from signalwire.rest import RestClient
client = RestClient(
project="your-project-id",
token="your-api-token",
host="your-space.signalwire.com",
)
client.queues.delete("queue-id")
print("Deleted successfully")