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

# Delete glossary term

> Delete a glossary term and all its translations.

## Path parameters

<ParamField path="term_id" type="string" required>
  The unique identifier of the glossary term to delete.
</ParamField>

## Response

Returns `204 No Content` on success. The term and all its translations are permanently removed.

<RequestExample>
  ```typescript TypeScript theme={null}
  await client.glossary.delete("term_abc123");
  ```

  ```python Python theme={null}
  client.glossary.delete("term_abc123")
  ```

  ```bash cURL theme={null}
  curl -X DELETE "https://hub.banditshq.com/api/v1/glossary/term_abc123" \
    -H "Authorization: Bearer lasso_..."
  ```
</RequestExample>
