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

# EnterpriseブループリントYAML用の事前署名付きURL

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

Enterprise レベルの `ManageAccountSnapshots` 権限を持つサービスユーザーが必要です。

<div id="behavior">
  ## 動作
</div>

Enterprise ブループリントのYAMLファイルをダウンロードするための事前署名付きURLを返します。


## OpenAPI

````yaml ja/v3-openapi.yaml GET /v3beta1/enterprise/snapshot-setup/blueprints/{blueprint_id}/contents
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/{blueprint_id}/contents:
    get:
      tags:
        - snapshot_setup
      summary: EnterpriseブループリントYAML用の事前署名付きURL
      operationId: >-
        get_enterprise_blueprint_contents_v3beta1_enterprise_snapshot_setup_blueprints__blueprint_id__contents_get
      parameters:
        - in: path
          name: blueprint_id
          required: true
          schema:
            title: Blueprint Id
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PresignedDownload'
          description: 成功レスポンス
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
          description: バリデーションエラー
components:
  schemas:
    PresignedDownload:
      description: 再利用可能な presigned URL レスポンス（TTL は 10 分）。
      properties:
        expires_at:
          description: URL の有効期限が切れる Unix タイムスタンプ。
          title: Expires At
          type: integer
        url:
          description: Presigned GET URL（HTTPS）。
          title: Url
          type: string
      required:
        - url
        - expires_at
      title: PresignedDownload
      type: object
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          title: Detail
          type: array
      title: HTTPValidationError
      type: object
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          title: Location
          type: array
        msg:
          title: Message
          type: string
        type:
          title: Error Type
          type: string
      required:
        - loc
        - msg
        - type
      title: ValidationError
      type: object
  securitySchemes:
    bearerAuth:
      description: 'サービスユーザーの認証情報（接頭辞: cog_）'
      scheme: bearer
      type: http

````