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

# List PDF Presets



## OpenAPI

````yaml get /pdf-presets
openapi: 3.0.0
info:
  title: Daytalog API
  version: 0.1.0
servers:
  - url: http://localhost:5252
security:
  - ApiKeyAuth: []
paths:
  /pdf-presets:
    get:
      summary: List PDF Presets
      parameters:
        - in: query
          name: enabled
          schema:
            type: boolean
      responses:
        '200':
          description: Preset array
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/PdfPreset'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UnauthorizeResponse'
components:
  schemas:
    PdfPreset:
      type: object
      properties:
        id:
          type: string
          example: k4j9p
        label:
          type: string
          example: My-Pdf-Preset
        enabled:
          type: boolean
    UnauthorizeResponse:
      type: object
      properties:
        error:
          type: string
          example: Unauthorized
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-token

````