delete

View as MarkdownOpen in Claude

Remove the conversation and its data. Nothing is post-processed and no webhook fires, which is the difference from end().

Parameters

conversation_id
strRequired

The conversation to delete.

Returns

boolTrue when the service reported the conversation deleted, False when no conversation had that id.

Example

import asyncio
from signalwire.ai_chat import AIChatClient
async def main():
async with AIChatClient(space="your-space") as client:
await client.delete("chat-8f21")
asyncio.run(main())