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



## OpenAPI

````yaml GET /v1/ticketing/collections/{collection_id}
openapi: 3.0.0
info:
  title: Poozle
  description: The poozle API description
  version: '1.0'
  contact: {}
servers: []
security: []
tags: []
paths:
  /v1/ticketing/collections/{collection_id}:
    get:
      tags:
        - Ticketing
      operationId: CollectionController_getCollection
      parameters:
        - name: raw
          required: false
          in: query
          description: Include raw response. When you want more data from the source
          schema:
            type: boolean
        - name: collection_id
          required: true
          in: path
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TicketingCollectionResponse'
components:
  schemas:
    TicketingCollectionResponse:
      type: object
      properties:
        data:
          $ref: '#/components/schemas/Collection'
      required:
        - data
    Collection:
      type: object
      properties:
        id:
          type: string
        parent_id:
          type: string
        type:
          type: string
        name:
          type: string
        description:
          type: string
        updated_at:
          type: string
        created_at:
          type: string
      required:
        - id
        - parent_id
        - type
        - name
        - description
        - updated_at
        - created_at

````