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

# Delete Text Mod



## OpenAPI

````yaml DELETE /text/{id}
openapi: 3.0.0
info:
  version: 1.0.0
  title: ContentMod Api
servers:
  - url: https://api.contentmod.io
security: []
paths:
  /text/{id}:
    delete:
      parameters:
        - schema:
            type: string
            minLength: 3
            example: 27fbdc0b-b295-46ce-93f5-81b2fc08a381
          required: true
          name: id
          in: path
      responses:
        '204':
          description: No content
      security:
        - Bearer: []
components:
  securitySchemes:
    Bearer:
      type: http
      scheme: bearer

````