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

# Organisationsgruppen-Limits abrufen

> Aktuelle Konfiguration der Organisationsgruppen abrufen

Erfordert einen persönlichen API key eines Enterprise-Administrators.

<Note>
  Dieser Endpunkt erfordert, dass die Funktion für Organisationsgruppen-Limits für Ihre Enterprise-Umgebung aktiviert ist. Wenden Sie sich an Ihr Account-Team, um diese Funktion zu aktivieren.
</Note>

Gibt die aktuelle Konfiguration der Organisationsgruppen zurück, einschließlich Gruppennamen, zugehöriger Organisations-IDs und optionaler Agent-Compute-Unit-Limits pro Abrechnungszeitraum.


## OpenAPI

````yaml de/v2-openapi.yaml GET /v2/enterprise/org-group-limits
openapi: 3.1.0
info:
  description: Devin v2 API mit persönlichen API Keys für Enterprise-Admins
  title: Devin API v2
  version: 2.0.0
servers: []
security:
  - bearerAuth: []
paths:
  /v2/enterprise/org-group-limits:
    get:
      tags:
        - org-group-limits
      summary: GET Organisationsgruppen-Konfiguration
      description: Ruft die Konfiguration der aktuellen Organisationsgruppen per GET ab.
      operationId: get_org_groups_config_v2_enterprise_org_group_limits_get
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OrgGroupsConfig'
          description: Erfolgreiche Antwort
components:
  schemas:
    OrgGroupsConfig:
      description: Konfiguration, die Gruppennamen ihren Einstellungen zuordnet.
      properties:
        groups:
          additionalProperties:
            $ref: '#/components/schemas/OrgGroupConfig'
          title: Groups
          type: object
      required:
        - groups
      title: OrgGroupsConfig
      type: object
    OrgGroupConfig:
      properties:
        max_cycle_acus:
          anyOf:
            - type: integer
            - type: 'null'
          title: Max Cycle Acus
        org_ids:
          items:
            type: string
          title: Org Ids
          type: array
          uniqueItems: true
      required:
        - org_ids
      title: OrgGroupConfig
      type: object
  securitySchemes:
    bearerAuth:
      description: Persönlicher API Key (apk_user_*) nur für Enterprise-Administratoren
      scheme: bearer
      type: http

````