> ## 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 die Berechtigung `ManageOrganizations`.

<Note>
  Dieser Endpunkt erfordert, dass die Organisationsgruppen-Limits-Funktion für Ihr Enterprise 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 maximaler Limits für Agent Compute Units pro Abrechnungszyklus.


## OpenAPI

````yaml de/v3-openapi.yaml GET /v3/enterprise/org-group-limits
openapi: 3.1.0
info:
  description: Devin v3 API mit Service-User-Authentifizierung und RBAC
  title: Devin API v3
  version: 3.0.0
servers: []
security:
  - bearerAuth: []
paths:
  /v3/enterprise/org-group-limits:
    get:
      tags:
        - org-groups
      summary: Konfiguration von Organisationsgruppen abrufen
      description: Rufen Sie die aktuelle Konfiguration der Organisationsgruppen ab.
      operationId: get_org_groups_config_v3_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 auf ihre Einstellungen abbildet.
      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: 'Servicebenutzer-Anmeldedaten (Präfix: cog_)'
      scheme: bearer
      type: http

````