> ## 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.

# Add crop



## OpenAPI

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

````