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

# Gruppen auflisten

> Authentifizierungsgruppen des Kontos auflisten

<script src="/locale-bridge.js" />


## OpenAPI

````yaml /openapi.de.json GET /v1/public/accounts/{account_id}/auth/groups
openapi: 3.1.0
info:
  title: Code API (Public)
  version: 1.0.0
servers:
  - url: https://api.hybridbox.io
security: []
paths:
  /v1/public/accounts/{account_id}/auth/groups:
    get:
      tags:
        - public-accounts
        - public-account-auth
      summary: Authentifizierungsgruppen des Kontos auflisten
      description: Listet Gruppen auf, die an ein Konto gebunden sind.
      operationId: >-
        list_public_account_auth_groups_v1_public_accounts__account_id__auth_groups_get
      parameters:
        - in: path
          name: account_id
          required: true
          schema:
            format: uuid
            title: Account Id
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/GroupResponse'
                title: >-
                  Response List Public Account Auth Groups V1 Public Accounts 
                  Account Id  Auth Groups Get
                type: array
          description: ''
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
          description: Validierungsfehler
      security:
        - PublicBearerAuth: []
components:
  schemas:
    GroupResponse:
      properties:
        account_id:
          format: uuid
          title: Konto-ID
          type: string
        attributes:
          additionalProperties:
            items:
              type: string
            type: array
          title: Attribute
          type: object
        description:
          anyOf:
            - type: string
            - type: 'null'
          title: Beschreibung
        id:
          title: ID
          type: string
        keycloak_account_id:
          anyOf:
            - format: uuid
              type: string
            - type: 'null'
          title: Keycloak Konto ID
        keycloak_name:
          title: Keycloak-Name
          type: string
        linked_scopes:
          items:
            $ref: '#/components/schemas/GroupScopeLinkResponse'
          title: verknüpft Bereiche
          type: array
        name:
          title: Name
          type: string
        parent_id:
          anyOf:
            - type: string
            - type: 'null'
          title: übergeordnet ID
        path:
          anyOf:
            - type: string
            - type: 'null'
          title: Pfad
        permission_context:
          $ref: '#/components/schemas/PermissionInspectabilitySnapshot'
        subgroup_ids:
          items:
            type: string
          title: Untergruppe IDs
          type: array
      required:
        - id
        - account_id
        - name
        - keycloak_name
      title: GroupResponse
      type: object
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          title: Detail
          type: array
      title: HTTPValidationError
      type: object
    GroupScopeLinkResponse:
      description: Schema für einen Ressourcenbereich, der mit einer Gruppe verknüpft ist.
      properties:
        resource_id:
          format: uuid
          title: Ressource ID
          type: string
        resource_type:
          title: Ressource Typ
          type: string
      required:
        - resource_type
        - resource_id
      title: GroupScopeLinkResponse
      type: object
    PermissionInspectabilitySnapshot:
      description: >-
        Gemeinsamer Prüfbarkeits-Snapshot für die Benutzer-, Gruppen- und
        Einladungsverwaltung.
      properties:
        assigned_bundle_keys:
          items:
            type: string
          title: Zugewiesene Bundle-Schlüssel
          type: array
        direct_capability_keys:
          items:
            type: string
          title: Direct Fähigkeit Keys
          type: array
        owner_assignments:
          items:
            $ref: '#/components/schemas/OwnerAssignmentSnapshot'
          title: Eigentümer Zuweisungen
          type: array
        resolved_capability_keys:
          items:
            type: string
          title: aufgelöst Fähigkeit Keys
          type: array
        status:
          default: active
          title: Status
          type: string
        subject_id:
          default: ''
          title: Subjekt ID
          type: string
        subject_type:
          default: unknown
          title: Subjekt Typ
          type: string
      title: PermissionInspectabilitySnapshot
      type: object
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          title: Standort
          type: array
        msg:
          title: Nachricht
          type: string
        type:
          title: Fehler Typ
          type: string
      required:
        - loc
        - msg
        - type
      title: ValidationError
      type: object
    OwnerAssignmentSnapshot:
      description: Schema, das eine Kontoinhaberbeziehung angibt.
      properties:
        account_id:
          format: uuid
          title: Konto-ID
          type: string
      required:
        - account_id
      title: OwnerAssignmentSnapshot
      type: object
  securitySchemes:
    PublicBearerAuth:
      bearerFormat: JWT or Hybridbox Service account token
      description: >-
        Public API bearer credential sent as `Authorization: Bearer <token>`.
        Use either an OAuth access token or a Hybridbox Service account token.
      scheme: bearer
      type: http

````