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

# Get organization features

> Get organization wide features



## OpenAPI

````yaml https://api2.rhombussystems.com/api/openapi/public.json post /api/org/getFeatures
openapi: 3.0.1
info:
  contact:
    email: developer@rhombussystems.com
  description: >-
    This API is for use by Rhombus customers and partners.


    ## Authentication


    All requests require two headers:

    - `x-auth-scheme` — The authentication scheme identifier. Use `api-token`
    for standard API key auth, or `partner-api-token` for partner API auth.

    - `x-auth-apikey` — Your Rhombus API key.


    Example:

    ```

    POST /api/camera/getMinimalCameraStateList

    x-auth-scheme: api-token

    x-auth-apikey: YOUR_API_KEY

    Content-Type: application/json

    ```
  title: Rhombus API
  version: '1.0'
servers:
  - description: Production Server
    url: https://api2.rhombussystems.com
security:
  - ApiKeyAuth: []
paths:
  /api/org/getFeatures:
    post:
      tags:
        - Org Webservice
      summary: Get organization features
      description: Get organization wide features
      operationId: getFeatures
      parameters:
        - description: >-
            Authentication scheme identifier. Use `api-token` for standard API
            key authentication, `partner-api-token` for partner API key
            authentication. Must be paired with the `x-auth-apikey` header
            containing your API key.
          example: api-token
          in: header
          name: x-auth-scheme
          required: true
          schema:
            type: string
            default: api-token
            enum:
              - api-token
              - api
              - partner-api-token
              - partner-api
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Org_GetFeaturesWSRequest'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Org_GetFeaturesWSResponse'
          description: OK
components:
  schemas:
    Org_GetFeaturesWSRequest:
      type: object
      description: Request object for getting organization features.
    Org_GetFeaturesWSResponse:
      type: object
      description: Response object containing organization feature flags.
      properties:
        behaviorDetection:
          type: boolean
          description: Whether behavior detection is enabled
          example: false
          nullable: true
        cloudArchiving:
          type: boolean
          description: Whether cloud archiving is enabled
          example: false
          nullable: true
        engagementCounting:
          type: boolean
          description: Whether engagement counting is enabled
          example: false
          nullable: true
        error:
          type: boolean
          nullable: true
        errorMsg:
          type: string
          nullable: true
        faceCounting:
          type: boolean
          description: Whether face counting is enabled
          example: false
          nullable: true
        faceCountingNonUnique:
          type: boolean
          description: Whether non-unique face counting is enabled
          example: false
          nullable: true
        faceRecognition:
          type: boolean
          description: Whether face recognition is enabled
          example: false
          nullable: true
        licensePlateRecognition:
          type: boolean
          description: Whether license plate recognition is enabled
          example: false
          nullable: true
        peopleCounting:
          type: boolean
          description: Whether people counting is enabled
          example: false
          nullable: true
        ppeDetection:
          type: boolean
          description: Whether PPE detection is enabled
          example: false
          nullable: true
        rulesEngine:
          type: boolean
          description: Whether rules engine is enabled (deprecated)
          example: false
          nullable: true
        vehicleCounting:
          type: boolean
          description: Whether vehicle counting is enabled
          example: false
          nullable: true
        warningMsg:
          type: string
          nullable: true
  securitySchemes:
    ApiKeyAuth:
      description: >-
        Your Rhombus API key. Must be accompanied by the `x-auth-scheme` header
        set to `api-token` (or `partner-api-token` for partner endpoints).
      in: header
      name: x-auth-apikey
      type: apiKey

````