> ## Documentation Index
> Fetch the complete documentation index at: https://docs.inboxapp.com/llms.txt
> Use this file to discover all available pages before exploring further.

# thread.deleted

> Occurs when a thread is deleted

## When it fires

A thread is permanently deleted from the workspace — either through the Inbox UI or the [Delete thread](/api-reference/threads/delete-thread) API endpoint.

## Payload

<ResponseField name="threadId" type="string" required>
  The ID of the deleted thread.
</ResponseField>

<ResponseExample>
  ```json Example payload theme={null}
  {
    "id": "ck9v2m5nj0xp4wq7ybftrae8",
    "seq": 43,
    "teamId": "hzcai5t59nn9vsck3rbuepyg",
    "type": "thread.deleted",
    "timestamp": "2025-01-15T10:31:00.000Z",
    "version": "1.0",
    "data": {
      "threadId": "l44e15irdq4db30i77cgphhx"
    }
  }
  ```
</ResponseExample>

<Note>
  Only the `threadId` is included — the full thread object is no longer available after deletion. If you need thread data for your integration, store it when you receive `thread.created` events.
</Note>
