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

# Delete crop



## OpenAPI

````yaml api-reference/openapi.json delete /api/common/crop/{id}
openapi: 3.0.1
info:
  title: OpenAPI definition
  version: v0
servers:
  - url: https://localhost:8080
    description: Generated server url
security: []
paths:
  /api/common/crop/{id}:
    delete:
      tags:
        - Crop
      summary: Delete crop
      operationId: delete_2
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: integer
            format: int64
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/CropDTO'
components:
  schemas:
    CropDTO:
      type: object
      properties:
        id:
          type: integer
          format: int64
        name:
          type: string

````