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

# URL prefirmato per il file di log della build

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

Richiede un utente di servizio con l'autorizzazione `ManageRepoBlueprints` a livello dell'organizzazione.

<div id="behavior">
  ## Comportamento
</div>

Restituisce un URL prefirmato per il download del file di log della build.


## OpenAPI

````yaml it/v3-openapi.yaml GET /v3beta1/organizations/{org_id}/snapshot-setup/builds/{build_id}/logs
openapi: 3.1.0
info:
  description: API Devin v3 con autenticazione utente di servizio e RBAC
  title: Devin API v3
  version: 3.0.0
servers: []
security:
  - bearerAuth: []
paths:
  /v3beta1/organizations/{org_id}/snapshot-setup/builds/{build_id}/logs:
    get:
      tags:
        - snapshot_setup
      summary: URL prefirmato per il file di log della build
      operationId: >-
        get_org_build_logs_v3beta1_organizations__org_id__snapshot_setup_builds__build_id__logs_get
      parameters:
        - in: path
          name: build_id
          required: true
          schema:
            title: Build Id
            type: string
        - description: 'ID dell''organizzazione (prefisso: org-)'
          in: path
          name: org_id
          required: true
          schema:
            example: org-abc123def456
            title: Org Id
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PresignedDownload'
          description: Risposta riuscita
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
          description: Errore di convalida
components:
  schemas:
    PresignedDownload:
      description: Risposta con URL prefirmato riutilizzabile (TTL di 10 minuti).
      properties:
        expires_at:
          description: Timestamp Unix di scadenza dell'URL.
          title: Expires At
          type: integer
        url:
          description: URL GET prefirmato (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: 'Credenziale dell''utente del servizio (prefisso: cog_)'
      scheme: bearer
      type: http

````