> ## 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.

# Blueprints auf Enterprise-Ebene auflisten

<div id="permissions">
  ## Berechtigungen
</div>

Erfordert einen Service-Benutzer mit der Berechtigung `ManageAccountSnapshots` auf Unternehmensebene.


## OpenAPI

````yaml de/v3-openapi.yaml GET /v3beta1/enterprise/snapshot-setup/blueprints
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:
  /v3beta1/enterprise/snapshot-setup/blueprints:
    get:
      tags:
        - snapshot_setup
      summary: Blueprints auf Enterprise-Ebene auflisten
      operationId: >-
        list_enterprise_blueprints_v3beta1_enterprise_snapshot_setup_blueprints_get
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BlueprintList'
          description: Erfolgreiche Antwort
components:
  schemas:
    BlueprintList:
      description: >-
        Listen-Envelope für Blueprints (wird in Ausführungsreihenfolge
        zurückgegeben).
      properties:
        data:
          items:
            $ref: '#/components/schemas/Blueprint'
          title: Data
          type: array
      required:
        - data
      title: BlueprintList
      type: object
    Blueprint:
      description: >-
        Öffentliches Ressourcenformat für ``Blueprint``.


        Hinweis: Das Enum ``type`` kann in Zukunft erweitert werden; Clients
        MÜSSEN unbekannte Werte

        robust verarbeiten. Der YAML-Inhalt wird separat über

        ``GET /blueprints/{id}/contents`` abgerufen.
      properties:
        blueprint_id:
          title: Blueprint Id
          type: string
        created_at:
          title: Created At
          type: integer
        repo_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Repo Name
        type:
          enum:
            - enterprise
            - org
            - repo
          title: Type
          type: string
        updated_at:
          title: Updated At
          type: integer
      required:
        - blueprint_id
        - type
        - repo_name
        - created_at
        - updated_at
      title: Blueprint
      type: object
  securitySchemes:
    bearerAuth:
      description: 'Servicebenutzer-Anmeldedaten (Präfix: cog_)'
      scheme: bearer
      type: http

````