# Download the Scenseimage  of the specified product

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /OpenApi/Product/ScenesImage:
    get:
      summary: Download the Scenseimage  of the specified product
      deprecated: false
      description: Download the Scenseimage  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: 300
                Message: Images not generate completed,try again later.
                ImageUrl: ''
          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-162165284-run
components:
  schemas: {}
  securitySchemes: {}
servers:
  - url: https://openapi.tvc-mall.com
    description: 正式环境
security: []

```
