# Get status of a list of products

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /OpenApi/Product/Status:
    get:
      summary: Get status of a list of products
      deprecated: false
      description: Get the details of the specified product
      tags:
        - Product
      parameters:
        - name: itemNos
          in: query
          description: itemNo separated by comma, no more than 50 itemNos
          required: true
          example: 10020320A,I6-640A,87070130A
          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: array
                items:
                  type: object
                  properties:
                    SKU:
                      type: string
                      title: SKU
                      description: SKU
                    StockStatus:
                      type: integer
                      title: 'StockStatus '
                      description: |
                        1 In stock
                        2 on sale
                        3  In shortage
                        4 out of stock
                        5 5-7 Days
                        7 7-10 Days
                    ProductStatus:
                      type: integer
                      title: ProductStatus
                      description: |
                        1  Normal
                        2  Out of Stock
                        3  Locked
                        4 Pre-sold
                        5 Group-buy
                  required:
                    - SKU
                    - StockStatus
                    - ProductStatus
                  x-apifox-orders:
                    - SKU
                    - StockStatus
                    - ProductStatus
              example:
                - SKU: 10020320A
                  StockStatus: 4
                  ProductStatus: 2
                - SKU: I6-640A
                  StockStatus: 4
                  ProductStatus: 2
                - SKU: 87070130A
                  StockStatus: 4
                  ProductStatus: 2
          headers: {}
          x-apifox-name: success
        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-162165282-run
components:
  schemas: {}
  securitySchemes: {}
servers:
  - url: https://openapi.tvc-mall.com
    description: 正式环境
security: []

```
