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

# 列出企业层级的蓝图

<div id="permissions">
  ## 权限
</div>

需要具有企业级别 `ManageAccountSnapshots` 权限的服务用户。


## OpenAPI

````yaml zh/v3-openapi.yaml GET /v3beta1/enterprise/snapshot-setup/blueprints
openapi: 3.1.0
info:
  description: 采用 Service User 身份验证和 RBAC 的 Devin v3 API
  title: Devin API v3
  version: 3.0.0
servers: []
security:
  - bearerAuth: []
paths:
  /v3beta1/enterprise/snapshot-setup/blueprints:
    get:
      tags:
        - snapshot_setup
      summary: 列出企业层级的蓝图
      operationId: >-
        list_enterprise_blueprints_v3beta1_enterprise_snapshot_setup_blueprints_get
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BlueprintList'
          description: 成功响应
components:
  schemas:
    BlueprintList:
      description: 蓝图的列表响应封装（按执行顺序返回）。
      properties:
        data:
          items:
            $ref: '#/components/schemas/Blueprint'
          title: Data
          type: array
      required:
        - data
      title: BlueprintList
      type: object
    Blueprint:
      description: |-
        公开的 ``Blueprint`` 资源结构。

        注意：``type`` 枚举未来可能会扩展；客户端 MUST 以优雅方式
        处理未知值。YAML 内容需通过
        ``GET /blueprints/{id}/contents`` 单独获取。
      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: 服务用户凭据（前缀：cog_）
      scheme: bearer
      type: http

````