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

# List docs groups



## OpenAPI

````yaml get /docs/groups
openapi: 3.0.3
info:
  title: Productlane API
  description: Productlane API v2.
  version: 2.0.0
servers:
  - url: https://productlane.com/api/v2
security: []
paths:
  /docs/groups:
    get:
      tags:
        - docs
      summary: List docs groups
      description: >-
        List help-center groups. Filter by portal with portal_instance_id.
        Requires the docs:read scope.
      operationId: docs-listGroups
      parameters:
        - name: portal_instance_id
          in: query
          required: false
          schema:
            type: string
          description: >-
            Filter to a single portal by its id (from GET /portal/instances).
            Pass `__main__` for the Main (Root) portal. Omit to return items
            across all portals.
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                        name:
                          type: string
                        order:
                          type: number
                        portal_instance_id:
                          type: string
                          nullable: true
                      required:
                        - id
                        - name
                        - order
                        - portal_instance_id
                      additionalProperties: false
                required:
                  - data
                additionalProperties: false
        default:
          $ref: '#/components/responses/error'
      security:
        - Authorization: []
components:
  responses:
    error:
      description: Error response
      content:
        application/json:
          schema:
            type: object
            properties:
              message:
                type: string
              code:
                type: string
              issues:
                type: array
                items:
                  type: object
                  properties:
                    message:
                      type: string
                  required:
                    - message
                  additionalProperties: false
            required:
              - message
              - code
            additionalProperties: false
  securitySchemes:
    Authorization:
      type: http
      scheme: bearer

````