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

# List ticket workflow versions for a project



## OpenAPI

````yaml /api-reference/ilyama.v1.json get /projects/{project_id}/ticket-workflows
openapi: 3.1.0
info:
  description: >
    Generation-ready starter contract for ilyama's HTTP API.

    This is intentionally scoped to stable routes already mounted in
    services/apis

    so frontend clients can begin integrating against the rewrite immediately.
  title: ilyama Core API
  version: 0.1.0
servers:
  - url: /core/api/v1
security:
  - bearerAuth: []
tags:
  - name: Certificates (HTTP)
  - name: Device JITR
  - name: Device RPC
  - name: Devices
  - name: Edge replication
  - name: Fleets
  - name: Integrations
  - name: MDM
  - name: Notification Event Registry
  - name: Notifications
  - name: OTA
  - name: Observability & data
  - name: Organizations
  - name: Project settings
  - name: Projects
  - name: Projects — Email Templates
  - name: Projects — Notification Subscriptions
  - name: Projects — Status
  - name: System
  - name: Tickets & workflows
  - name: Webhooks
paths:
  /projects/{project_id}/ticket-workflows:
    get:
      tags:
        - Tickets & workflows
      summary: List ticket workflow versions for a project
      operationId: listProjectTicketWorkflows
      parameters:
        - in: path
          name: project_id
          required: true
          schema:
            format: uuid
            type: string
        - in: query
          name: page
          schema:
            minimum: 1
            type: integer
        - in: query
          name: limit
          schema:
            type: integer
        - in: query
          name: offset
          schema:
            type: integer
        - description: >
            Filter by active version flag when present. Omit to skip this
            filter. Accepted values are true/false, 1/0, or yes/no
            (case-insensitive). Other values yield HTTP 400.
          in: query
          name: is_active
          schema:
            type: boolean
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProjectTicketWorkflowVersionsListResponse'
          description: Workflow versions loaded
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorEnvelope'
          description: Invalid query parameter
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorEnvelope'
          description: Unauthorized
        '403':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorEnvelope'
          description: Forbidden
      security:
        - bearerAuth: []
          orgIdHeader: []
components:
  schemas:
    ProjectTicketWorkflowVersionsListResponse:
      properties:
        data:
          $ref: '#/components/schemas/ProjectTicketWorkflowVersionsListData'
        ok:
          enum:
            - 1
          type: integer
      required:
        - ok
        - data
      type: object
    ErrorEnvelope:
      properties:
        detail:
          type: string
        message:
          oneOf:
            - type: string
            - type: object
        ok:
          enum:
            - 0
          type: integer
      required:
        - ok
        - message
        - detail
      type: object
    ProjectTicketWorkflowVersionsListData:
      properties:
        items:
          items:
            additionalProperties: true
            type: object
          type: array
        meta:
          $ref: '#/components/schemas/ListPaginationMeta'
      required:
        - items
        - meta
      type: object
    ListPaginationMeta:
      properties:
        currentPage:
          type: integer
        itemsPerPage:
          type: integer
        totalItems:
          type: integer
        totalPages:
          type: number
      required:
        - currentPage
        - itemsPerPage
        - totalItems
        - totalPages
      type: object
  securitySchemes:
    bearerAuth:
      bearerFormat: JWT
      scheme: bearer
      type: http
    orgIdHeader:
      in: header
      name: ORG-ID
      type: apiKey

````