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

# List installed apps

> Returns a paginated list of installed applications available within the scope of the organization.



## OpenAPI

````yaml /en/api-reference/openapi.en-v1.json get /v1/organizations/{organization_id}/installed-apps
openapi: 3.0.3
info:
  title: Public Portal API
  version: 1.0.0
  description: Public REST API for portal
servers:
  - url: https://api.staging.flxwvdexternal.com
    description: Staging API server.
security:
  - bearerAuth: []
tags: []
paths:
  /v1/organizations/{organization_id}/installed-apps:
    get:
      tags:
        - Installed apps
      summary: List installed apps
      description: >-
        Returns a paginated list of installed applications available within the
        scope of the organization.
      operationId: get_installed_apps
      parameters:
        - name: organization id
          in: path
          required: true
          schema:
            type: string
            pattern: ^[0-9a-f]{24}$
            minLength: 24
            maxLength: 24
          description: Organization identifier.
          example: 507f1f77bcf86cd799439011
        - name: page
          in: query
          required: false
          schema:
            type: integer
            default: 1
            minimum: 1
          description: Page number.
        - name: per_page
          in: query
          required: false
          schema:
            type: integer
            default: 100
            maximum: 100
            minimum: 1
          description: Number of items per page.
        - name: fields
          in: query
          required: false
          schema:
            type: string
            maxLength: 2048
          description: Comma-separated names of response element fields to include.
        - name: filters
          in: query
          required: false
          schema:
            type: string
            maxLength: 5120
          description: JSON filter expression on supported filter fields.
          examples:
            simple:
              summary: Filter by application name
              value: '{"field":"name","op":"contains","value":"chrome"}'
            complex-and:
              summary: Filter by operating system and installation presence
              value: >-
                {"and":[{"field":"operating_system","op":"eq","value":"Windows"},{"field":"has_installations","op":"eq","value":true}]}
            complex-or-and:
              summary: Combine publisher alternatives with installation presence
              value: >-
                {"and":[{"or":[{"field":"publisher","op":"contains","value":"microsoft"},{"field":"publisher","op":"contains","value":"google"}]},{"field":"has_installations","op":"eq","value":true}]}
        - name: aggregate
          in: query
          required: false
          schema:
            type: string
            maxLength: 1024
          description: >-
            JSON aggregation expression with `group_by` and `aggregates`. Cannot
            be combined with `fields`.
          examples:
            group_by_operating_system:
              summary: Group by operating system and count
              value: >-
                {"group_by":["operating_system"],"aggregates":[{"field":"*","function":"count"}]}
            group_by_publisher_avg_installations:
              summary: Group by publisher and calculate average installations
              value: >-
                {"group_by":["publisher"],"aggregates":[{"field":"*","function":"count"},{"field":"installations","function":"avg"}]}
        - name: sort
          in: query
          required: false
          schema:
            type: string
            pattern: ^([a-z_]+):(asc|desc)$
          description: >-
            Sorting expression in the format <field>:asc|desc. In aggregate
            mode, only accepts `group_by` fields or aggregated aliases (`count`,
            `<function>_<field>`).
      responses:
        '200':
          description: Installed applications retrieved successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetInstalledAppsResponseV1'
              examples:
                paginated_result:
                  summary: Paginated list of installed applications
                  value:
                    has_next: true
                    data:
                      - id: 64f0c2a1b2d3e4f5060708c1
                        organization_id: 507f1f77bcf86cd799439011
                        name: Microsoft Edge
                        discovered_at: '2026-03-10T09:00:00Z'
                        reported_at: '2026-03-15T09:45:11Z'
                        operating_system: windows
                        publisher: Microsoft Corporation
                        installations: 4
                empty_result:
                  summary: No installed applications found
                  value:
                    has_next: false
                    data: []
        '400':
          description: Invalid request parameters.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              examples:
                invalid_filters:
                  summary: Invalid filter format
                  value:
                    error:
                      message: Invalid filter format
                      code: bad_request
                      details: filters must be a valid JSON
        '401':
          description: Not authorized or organization not accessible.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              examples:
                organization_not_authorized:
                  summary: Organization access failure
                  value:
                    error:
                      message: Unauthorized
                      code: unauthorized
        '404':
          description: >-
            The requested resource was not found within the organization's
            authorized scope.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              examples:
                resource_not_found:
                  summary: Requested resource not found
                  value:
                    error:
                      message: Not Found
                      code: not_found
        '500':
          description: Internal server error.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              examples:
                unexpected_error:
                  summary: Unhandled failure
                  value:
                    error:
                      message: Internal Server Error
                      code: internal_error
components:
  schemas:
    GetInstalledAppsResponseV1:
      type: object
      properties:
        has_next:
          type: boolean
          description: Indicates if another page is available.
        data:
          type: array
          items:
            $ref: '#/components/schemas/GetInstalledAppsItemV1'
      required:
        - has_next
        - data
    ErrorResponse:
      type: object
      properties:
        error:
          type: object
          properties:
            message:
              type: string
            code:
              type: string
            details:
              type: string
          required:
            - message
            - code
      required:
        - error
    GetInstalledAppsItemV1:
      type: object
      properties:
        id:
          type: string
          pattern: ^[0-9a-f]{24}$
          minLength: 24
          maxLength: 24
          description: Identifier of the installed application.
        organization_id:
          type: string
          pattern: ^[0-9a-f]{24}$
          minLength: 24
          maxLength: 24
          description: >-
            Identifier of the organization associated with this installed
            application item.
        name:
          type: string
          description: Name of the installed application.
        discovered_at:
          type: string
          format: date-time
          nullable: true
          description: Timestamp of first discovery.
        reported_at:
          type: string
          format: date-time
          description: Timestamp of the last report.
        operating_system:
          type: string
          enum:
            - windows
            - linux
            - android
            - mac_os
            - chrome_os
            - other
          description: Operating system where the application is observed.
        publisher:
          type: string
          nullable: true
          description: Publisher of the application.
        installations:
          type: integer
          minimum: 0
          description: Number of installations observed for the application.
      required:
        - id
        - organization id
        - name
        - reported_at
        - operating_system
        - installations
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````