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

# Delete session

> Stop and remove a persistent session container by ID.

Deletes a persistent session and stops its container.

<ParamField path="id" type="string" required>
  Persistent session ID to destroy.
</ParamField>

<ResponseField name="ok" type="boolean">
  Always `true` after delete handling.
</ResponseField>

<RequestExample>
  ```bash theme={null}
  curl -X DELETE http://localhost:3000/session/session-123 \
    -H "Authorization: Bearer $ISOL8_API_KEY"
  ```
</RequestExample>

<ResponseExample>
  ```json theme={null}
  { "ok": true }
  ```
</ResponseExample>

<Note>
  This endpoint is idempotent. It returns `{ "ok": true }` even when the session does not exist.
</Note>
