# Download the images of the specified product

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /OpenApi/Product/Image:
    get:
      summary: Download the images of the specified product
      deprecated: false
      description: Download the images of the specified product
      tags:
        - Product
      parameters:
        - name: ItemNo
          in: query
          description: unique item identification
          required: true
          example: 10000007A
          schema:
            type: string
        - name: Size
          in: query
          description: Images size that can download:500x500, or 1000x1000
          required: true
          example: 1000x1000
          schema:
            type: string
        - name: Authorization
          in: header
          description: Authorization
          required: true
          example: 2+s8CDVEwkmRHSJ9lorE5Q==
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  Code:
                    type: integer
                    title: code
                    description: code
                  Message:
                    type: string
                    title: message
                    description: message
                  ImageUrl:
                    type: string
                    title: image URL
                    description: image URL
                required:
                  - Code
                  - Message
                  - ImageUrl
                x-apifox-orders:
                  - Code
                  - Message
                  - ImageUrl
              example:
                Code: 100
                Message: Images generated success.
                ImageUrl: >-
                  https://tvc-image-package.s3.amazonaws.com/openapi/image-packages/3e7fa007-b61d-461d-9236-37d9312446fc/10000007A_1000x1000.zip?AWSAccessKeyId=AKIAIP6SMUZNIXN4JF2Q&Expires=1703218075&Signature=VIvH%2FNXPrNTi3UW1vC9tlytoxcM%3D
          headers: {}
          x-apifox-name: 成功
        x-200:unauthorized:
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  Message:
                    type: string
                    description: message
                required:
                  - Message
                x-apifox-orders:
                  - Message
              example:
                Message: unauthorized
          headers: {}
          x-apifox-name: unauthorized
      security: []
      x-apifox-folder: Product
      x-apifox-status: released
      x-run-in-apifox: https://app.apifox.com/web/project/4282467/apis/api-162165283-run
components:
  schemas: {}
  securitySchemes: {}
servers:
  - url: https://openapi.tvc-mall.com
    description: 正式环境
security: []

```
