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

# List pipelines

> List the pipelines visible to the authenticated user, most recently updated first. A pipeline
is visible when it is public or explicitly shared with the user — an API service account only
sees public pipelines and those it was added to. Each pipeline carries its stages in `lanes`
(`id`, `title`, `color`, `order`, `archived`); pass a lane's `id` as `laneId` when adding or
moving entries.



## OpenAPI

````yaml https://api.gleap.io/api-docs.json get /pipelines
openapi: 3.0.0
info:
  title: gleap-server
  version: 14.0.0
  contact: {}
servers:
  - url: https://api.gleap.io/v3
security: []
paths:
  /pipelines:
    get:
      tags:
        - Pipelines
      summary: List pipelines
      description: >-
        List the pipelines visible to the authenticated user, most recently
        updated first. A pipeline

        is visible when it is public or explicitly shared with the user — an API
        service account only

        sees public pipelines and those it was added to. Each pipeline carries
        its stages in `lanes`

        (`id`, `title`, `color`, `order`, `archived`); pass a lane's `id` as
        `laneId` when adding or

        moving entries.
      operationId: FindPipelines
      parameters:
        - in: header
          name: project
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Ok
          content:
            application/json:
              schema:
                items:
                  allOf:
                    - properties:
                        updatedAt:
                          $ref: '#/components/schemas/NativeDate'
                        createdAt:
                          $ref: '#/components/schemas/NativeDate'
                      required:
                        - updatedAt
                        - createdAt
                      type: object
                    - properties:
                        sortBy: {}
                        color:
                          type: string
                        icon:
                          type: string
                        organisation:
                          properties:
                            isValid:
                              properties: {}
                              type: object
                            createFromHexString:
                              properties: {}
                              type: object
                            createFromTime:
                              properties: {}
                              type: object
                            generate:
                              properties: {}
                              type: object
                            cacheHexString: {}
                          type: object
                        name:
                          type: string
                        columns:
                          items: {}
                          type: array
                        recordType:
                          type: string
                          enum:
                            - COMPANY
                            - CONTACT
                        lanes:
                          items: {}
                          type: array
                        viewType:
                          type: string
                          enum:
                            - board
                            - table
                        isPublic:
                          type: boolean
                        project:
                          properties:
                            isValid:
                              properties: {}
                              type: object
                            createFromHexString:
                              properties: {}
                              type: object
                            createFromTime:
                              properties: {}
                              type: object
                            generate:
                              properties: {}
                              type: object
                            cacheHexString: {}
                          type: object
                        users:
                          items:
                            $ref: '#/components/schemas/ObjectId'
                          type: array
                      required:
                        - columns
                        - recordType
                        - lanes
                        - viewType
                        - isPublic
                        - project
                        - users
                      type: object
                    - $ref: '#/components/schemas/Document_any.any.any_'
                    - properties:
                        _id:
                          $ref: '#/components/schemas/ObjectId'
                      required:
                        - _id
                      type: object
                type: array
      security:
        - jwt: []
components:
  schemas:
    NativeDate:
      type: string
    ObjectId:
      type: string
    Document_any.any.any_:
      $ref: '#/components/schemas/FlattenMaps_T_'
      description: >-
        Generic types for Document:

        *  T - the type of _id

        *  TQueryHelpers - Object with any helpers that should be mixed into the
        Query type

        *  DocType - the type of the actual Document created
    FlattenMaps_T_:
      properties: {}
      type: object
  securitySchemes:
    jwt:
      type: http
      scheme: bearer
      bearerFormat: JWT

````