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

# Update Comment



## OpenAPI

````yaml PATCH /v1/ticketing/{collection_id}/tickets/{ticket_id}/comments/{comment_id}
openapi: 3.0.0
info:
  title: Poozle
  description: The poozle API description
  version: '1.0'
  contact: {}
servers: []
security: []
tags: []
paths:
  /v1/ticketing/{collection_id}/tickets/{ticket_id}/comments/{comment_id}:
    patch:
      tags:
        - Ticketing
      operationId: CommentController_patchComment
      parameters:
        - name: raw
          required: false
          in: query
          description: Include raw response. When you want more data from the source
          schema:
            type: boolean
        - name: comment_id
          required: true
          in: path
          schema:
            type: string
        - name: collection_id
          required: true
          in: path
          schema:
            type: string
        - name: ticket_id
          required: true
          in: path
          schema:
            type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateCommentBody'
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TicketingCommentResponse'
components:
  schemas:
    UpdateCommentBody:
      type: object
      properties:
        body:
          type: string
      required:
        - body
    TicketingCommentResponse:
      type: object
      properties:
        data:
          $ref: '#/components/schemas/Comment'
      required:
        - data
    Comment:
      type: object
      properties:
        id:
          type: string
        ticket_id:
          type: string
        body:
          type: string
        html_body:
          type: string
        created_by_id:
          type: string
        created_by:
          type: object
        is_private:
          type: string
        created_at:
          type: string
        updated_at:
          type: string
      required:
        - id
        - ticket_id
        - body
        - html_body
        - created_by_id
        - created_by
        - is_private
        - created_at
        - updated_at

````