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

# delete_ticket

> Remove a ticket from its Montra document.

Removes a ticket from its document. The delete is soft: the ticket stops appearing in the document and stops being readable through the connector, but it stays recoverable from the app.

Prefer [`set_ticket_status`](/tools/set-ticket-status) for work that is finished — deleting is for tickets that should never have existed.

## Input

<ParamField body="ticketId" type="string" required>
  Id of the Montra ticket (UUID).
</ParamField>

## Output

<ResponseField name="deleted" type="boolean" required>
  Always `true` when the call succeeds.
</ResponseField>

<ResponseField name="ticketId" type="string" required>
  Id of the deleted ticket.
</ResponseField>

## Notes

* Deleting an already-deleted ticket reads as not found rather than succeeding again.
* Tickets outside the workspace this connection is bound to read as not found. See [workspace binding](/authentication#workspace-binding).
* Related: [`get_ticket`](/tools/get-ticket), [`update_ticket`](/tools/update-ticket).
