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

# Get Comments



## OpenAPI

````yaml GET /v1/ticketing/{collection_id}/tickets/{ticket_id}/comments
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:
    get:
      tags:
        - Ticketing
      operationId: CommentController_getComments
      parameters:
        - name: cursor
          required: false
          in: query
          description: >-
            Cursor to start from. You can find cursors for next & previous pages
            in the meta.cursors property of the response.
          schema:
            type: string
        - name: raw
          required: false
          in: query
          description: Include raw response. When you want more data from the source
          schema:
            type: boolean
        - name: sort
          required: false
          in: query
          schema:
            type: string
        - name: direction
          required: false
          in: query
          schema:
            type: string
        - name: collection_id
          required: true
          in: path
          schema:
            type: string
        - name: ticket_id
          required: true
          in: path
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TicketingCommentsResponse'
components:
  schemas:
    TicketingCommentsResponse:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/Comment'
        meta:
          $ref: '#/components/schemas/Meta'
      required:
        - data
        - meta
    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
    Meta:
      type: object
      properties:
        limit:
          type: number
        cursors:
          type: object
          properties:
            before:
              type: string
            current:
              type: string
            next:
              type: string
      required:
        - limit
        - cursors

````