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

# Get an event image import



## OpenAPI

````yaml https://api.batchrelay.com/openapi.json get /v1/studios/{studio_id}/events/{event_id}/image-imports/{import_id}
openapi: 3.1.0
info:
  description: >-
    Provider-neutral print catalog and prepared-media validation. This document
    covers only routes owned by the Go service; it deliberately excludes
    migration-proxied order lifecycle routes and all provider payloads.
  license:
    name: Proprietary
    url: https://github.com/SENTINELITE/Batch-Relay-Go/blob/main/README.md
  title: Batch Relay API
  version: 1.0.1
servers:
  - url: https://api.batchrelay.com
security: []
tags:
  - description: Service health and the public API description.
    name: System
  - description: Test Mode session creation and API credential entry points.
    name: Authentication
  - description: >-
      Provider-neutral canonical catalog resources and platform-owned semantic
      definitions.
    name: Catalog
  - description: Studio-scoped guest checkout-link management.
    name: Checkout links
  - description: >-
      One-way operational event messages. Alert emails contain no message body
      and recipients read messages after Batch Relay authentication.
    name: Studio messages
  - description: >-
      Explicit, reviewable sandbox-to-Live promotion plans for forms, catalog,
      and storefront configuration.
    name: Sandbox promotions
  - description: Provider-neutral validation, quoting, and order lifecycle operations.
    name: Print orders
  - description: Managed fulfillment asset ingestion and metadata.
    name: Managed assets
  - description: Studio-scoped original asset upload sessions and objects.
    name: Studio assets
  - description: Prepared and confirmed event roster team changes.
    name: Event team changes
  - description: Authenticated studio, event, and form-management operations.
    name: Studio management
  - description: >-
      Authenticated studio retail catalog management. Draft and publication
      lifecycles are explicit per product or package.
    name: Studio catalog
  - description: >-
      Authenticated singular storefront assortment management. PATCH atomically
      publishes a new immutable assortment revision; no storefront draft
      lifecycle exists yet.
    name: Storefront
  - description: Managed media used by the studio retail catalog.
    name: Studio catalog assets
  - description: Template rendering job creation and retrieval.
    name: Template renders
  - description: >-
      Published browser-side template packages and short-lived server proof
      renders. Preview artifacts are never fulfillment artwork.
    name: Browser previews
  - description: API account and credential administration.
    name: API accounts
paths:
  /v1/studios/{studio_id}/events/{event_id}/image-imports/{import_id}:
    parameters:
      - $ref: '#/components/parameters/ClientSurface'
      - $ref: '#/components/parameters/ClientVersion'
      - $ref: '#/components/parameters/InvocationMode'
    get:
      tags:
        - Image imports
      summary: Get an event image import
      operationId: getEventImageImport
      parameters:
        - $ref: '#/components/parameters/StudioID'
        - $ref: '#/components/parameters/EventID'
        - in: path
          name: import_id
          required: true
          schema:
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ImageImport'
          description: Image import
        '503':
          description: Lifecycle unavailable
      security:
        - bearerAuth: []
components:
  parameters:
    ClientSurface:
      description: >-
        Untrusted optional analytics hint naming the calling client surface. It
        never affects authorization, routing, pricing, or behavior.
      in: header
      name: X-BatchRelay-Client-Surface
      required: false
      schema:
        maxLength: 100
        minLength: 1
        type: string
    ClientVersion:
      description: >-
        Untrusted optional analytics hint naming the calling client version. It
        never affects authorization, routing, pricing, or behavior.
      in: header
      name: X-BatchRelay-Client-Version
      required: false
      schema:
        maxLength: 100
        minLength: 1
        type: string
    InvocationMode:
      description: >-
        Untrusted optional analytics hint naming the invocation mode. It never
        affects authorization, routing, pricing, or behavior.
      in: header
      name: X-BatchRelay-Invocation-Mode
      required: false
      schema:
        maxLength: 100
        minLength: 1
        type: string
    StudioID:
      description: >-
        Stable public studio ID beginning with stu_. The API never selects a
        studio implicitly; a local CLI profile name is not a studio ID.
      in: path
      name: studio_id
      required: true
      schema:
        maxLength: 256
        minLength: 5
        pattern: ^stu_[A-Za-z0-9_-]+$
        type: string
    EventID:
      in: path
      name: event_id
      required: true
      schema:
        maxLength: 256
        minLength: 1
        type: string
  schemas:
    ImageImport:
      additionalProperties: false
      properties:
        duplicates:
          items:
            type: string
          type: array
        id:
          type: string
        missing_files:
          items:
            type: string
          type: array
        proposed_bindings:
          items:
            properties:
              asset_id:
                type: string
              confidence:
                type: string
              subject_key:
                type: string
            required:
              - subject_key
              - asset_id
              - confidence
            type: object
          type: array
        resolution_diagnostics:
          items:
            properties:
              acknowledgement:
                additionalProperties: false
                properties:
                  acknowledged_at:
                    type: integer
                  policy_version:
                    type: string
                  reason:
                    type: string
                required:
                  - policy_version
                  - reason
                  - acknowledged_at
                type: object
              effective_ppi:
                type: number
              grade:
                enum:
                  - ready
                  - warning
                  - blocked
                type: string
              message:
                type: string
              output:
                type: string
              output_inches:
                properties:
                  height:
                    type: number
                  width:
                    type: number
                required:
                  - width
                  - height
                type: object
              source_pixels:
                properties:
                  height:
                    type: integer
                  width:
                    type: integer
                required:
                  - width
                  - height
                type: object
            required:
              - output
              - source_pixels
              - output_inches
              - effective_ppi
              - grade
              - message
            type: object
          type: array
        revision:
          minimum: 1
          type: integer
        status:
          type: string
        unresolved:
          items:
            type: string
          type: array
      required:
        - id
        - status
        - revision
        - resolution_diagnostics
        - unresolved
        - proposed_bindings
        - duplicates
        - missing_files
      type: object
  securitySchemes:
    bearerAuth:
      bearerFormat: Batch Relay API key or anonymous session
      description: >-
        Batch Relay scoped API key or an anonymous Test Mode session. Scope
        names document required capabilities. Anonymous sessions are
        sandbox-only and do not authorize studio, event, billing, or Live Mode
        operations.
      scheme: bearer
      type: http

````