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

# Create draft comment

> Creates a draft comment for a specific ticket.

<Warning>
  **Deprecated:** This is a **v1** endpoint. It will continue to work, but we
  recommend migrating to the [v2 equivalent](/api-reference) for improved REST
  compliance (correct HTTP status codes, consistent response envelopes, and
  hyphenated URLs).
</Warning>

<Info>Replace `{your-subdomain}` with your workspace's subdomain. <br /> Learn how to find your subdomain in [Workspace subdomain](/getting-started/workspace-subdomain).</Info>


## OpenAPI

````yaml /bundled-v1/comments.yaml POST /tickets/{ticket_id}/drafts
openapi: 3.0.3
info:
  title: NeetoDesk APIs
  version: 1.0.0
servers:
  - description: NeetoDesk APIs
    url: https://{your-subdomain}.neetodesk.com/api/v1/public
    variables:
      your-subdomain:
        default: spinkart
        description: >-
          Replace **spinkart** with your [workspace's
          subdomain](/getting-started/workspace-subdomain).
security: []
paths:
  /tickets/{ticket_id}/drafts:
    post:
      summary: Create a draft comment for a ticket
      description: Creates a draft comment for a specific ticket.
      parameters:
        - $ref: '#/components/parameters/ticket_id_param'
        - $ref: '#/components/parameters/api_key_header'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateDraftRequest'
      responses:
        '200':
          description: OK - Draft created successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CreateDraftResponse'
components:
  parameters:
    ticket_id_param:
      in: path
      name: ticket_id
      description: >-
        ID of the ticket to retrieve comments for. You can use either the ticket
        ID (UUID) or ticket number (sequential number) interchangeably. Refer to
        [Getting Ticket ID](/getting-started/getting-ticket-id) section for
        detailed instructions.
      required: true
      schema:
        type: string
    api_key_header:
      in: header
      name: X-Api-Key
      description: >-
        Use the X-Api-Key header to provide your workspace API key. Refer to
        [Authentication](/getting-started/authentication) for more information.
      required: true
      schema:
        type: string
        default: your-api-key
  schemas:
    CreateDraftRequest:
      type: object
      required:
        - content
      properties:
        content:
          type: string
          description: Content for the draft comment. Cannot be blank.
          example: We are looking into the issue.
        comment_type:
          type: string
          enum:
            - reply
            - note
          description: Type of the comment. Defaults to `reply`.
          example: note
        author_email:
          type: string
          description: >-
            Optional email address of the person creating the draft. If
            provided, the signature stored in NeetoDesk for this user will be
            appended to the draft.
          example: oliver@example.com
    CreateDraftResponse:
      type: object
      properties:
        id:
          type: string
          description: Unique identifier for the draft
          example: aaaabbbb-cccc-dddd-eeee-ffff00004444
        comment_type:
          type: string
          description: The type of the comment
          example: reply
        created_at:
          type: string
          format: date-time
          description: Timestamp when the draft was created
        updated_at:
          type: string
          format: date-time
          description: Timestamp when the draft was last updated
        content:
          type: string
          description: Content of the draft comment
          example: We are looking into the issue.

````