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



## OpenAPI

````yaml GET /v1/ticketing/{collection_id}/tickets
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:
    get:
      tags:
        - Ticketing
      operationId: TicketsController_getTickets
      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: status
          required: false
          in: query
          schema:
            type: string
        - name: since
          required: false
          in: query
          schema:
            type: string
        - name: assignee_id
          required: false
          in: query
          schema:
            type: string
        - name: collection_id
          required: true
          in: path
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TicketingTicketsResponse'
components:
  schemas:
    TicketingTicketsResponse:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/Ticket'
        meta:
          $ref: '#/components/schemas/Meta'
      required:
        - data
        - meta
    Ticket:
      type: object
      properties:
        id:
          type: string
        parent_id:
          type: string
        collection_id:
          type: string
        type:
          type: string
        name:
          type: string
        description:
          type: string
        status:
          type: string
        priority:
          type: string
        ticket_url:
          type: string
        assignees:
          type: array
          items:
            $ref: '#/components/schemas/TicketAssignee'
        updated_at:
          type: string
        created_at:
          type: string
        created_by:
          type: string
        due_date:
          type: string
        completed_at:
          type: string
        tags:
          type: array
          items:
            $ref: '#/components/schemas/TicketTag'
      required:
        - id
        - parent_id
        - collection_id
        - type
        - name
        - description
        - status
        - priority
        - ticket_url
        - assignees
        - updated_at
        - created_at
        - created_by
        - due_date
        - completed_at
        - tags
    Meta:
      type: object
      properties:
        limit:
          type: number
        cursors:
          type: object
          properties:
            before:
              type: string
            current:
              type: string
            next:
              type: string
      required:
        - limit
        - cursors
    TicketAssignee:
      type: object
      properties:
        id:
          type: string
        username:
          type: string
      required:
        - id
        - username
    TicketTag:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
      required:
        - id
        - name

````