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

# List folders

> List the folders your tests are organised into. Each folder carries its full path (`Checkout / Payments`) and how many tests are in it, counting its subfolders, so one call is enough to find the folder you want. `unfiledTestCount` is how many tests are in no folder at all.



## OpenAPI

````yaml /openapi.json get /tests/folders
openapi: 3.0.2
info:
  title: MobileBoost API
  version: 1.0.0
servers:
  - url: https://api.mobileboost.io
security:
  - BearerAuth: []
paths:
  /tests/folders:
    get:
      summary: List folders
      description: >-
        List the folders your tests are organised into. Each folder carries its
        full path (`Checkout / Payments`) and how many tests are in it, counting
        its subfolders, so one call is enough to find the folder you want.
        `unfiledTestCount` is how many tests are in no folder at all.
      operationId: list_test_folders
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  folders:
                    type: array
                    items:
                      $ref: '#/components/schemas/Folder'
                  unfiledTestCount:
                    type: integer
                    description: Tests that are in no folder.
              example:
                folders:
                  - id: kFq2b8s1TzYwm0Xd4eNc
                    name: Checkout
                    parentId: null
                    path: Checkout
                    testCount: 12
                  - id: p7Rw3nVa5LcQe1Zt9uHb
                    name: Payments
                    parentId: kFq2b8s1TzYwm0Xd4eNc
                    path: Checkout / Payments
                    testCount: 4
                unfiledTestCount: 3
        '400':
          description: >-
            This organisation's tests are QA Studio no-code tests, which this
            API does not file into folders.
components:
  schemas:
    Folder:
      title: Folder
      type: object
      properties:
        id:
          title: Folder ID
          type: string
          description: The id everything else refers to this folder by.
        name:
          title: Name
          type: string
          description: Display name. Two folders may share one.
        parentId:
          title: Parent ID
          type: string
          nullable: true
          description: The folder this one sits in, or `null` at the top level.
        path:
          title: Path
          type: string
          description: The names from the top level down, joined with ` / `.
        testCount:
          title: Test count
          type: integer
          description: Tests in this folder, counting its subfolders.
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer

````