tvcmall_openapi
  1. Product
tvcmall_openapi
  • Authorization
    • Get Authorization
      GET
  • Category
    • Get children of the category specified
      GET
    • Get parent of the category specified
      GET
  • Product
    • Search products
      GET
    • Get the details of the specified product
      GET
    • Get status of a list of products
      GET
    • Download the images of the specified product
      GET
    • Download the Scenseimage of the specified product
      GET
    • Search products with specific main category
      GET
    • Get the details of the specified product with images
      GET
  • Order
    • Create order
      POST
    • Get Order List
      GET
    • Get Order Information
      GET
  • Shipping
    • Shipping Calculation
      POST
    • Shipping Calculation Enhancement
      POST
  1. Product

Get status of a list of products

GET
https://openapi.tvc-mall.com/OpenApi/Product/Status
Last modified:2023-12-04 06:50:43
Maintainer:Alfred.Tvc
Get the details of the specified product

Request

Query Params
itemNos
string 
required
itemNo separated by comma, no more than 50 itemNos
Example:
10020320A,I6-640A,87070130A
Header Params
Authorization
string 
required
Authorization
Example:
2+s8CDVEwkmRHSJ9lorE5Q==

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://openapi.tvc-mall.com/OpenApi/Product/Status?itemNos=10020320A,I6-640A,87070130A' \
--header 'Authorization: 2+s8CDVEwkmRHSJ9lorE5Q=='

Responses

🟢200success
application/json
Body
array of:
SKU
string 
SKU
required
SKU
StockStatus
integer 
StockStatus
required
1 In stock
2 on sale
3 In shortage
4 out of stock
5 5-7 Days
7 7-10 Days
ProductStatus
integer 
ProductStatus
required
1 Normal
2 Out of Stock
3 Locked
4 Pre-sold
5 Group-buy
Example
[
    {
        "SKU": "10020320A",
        "StockStatus": 4,
        "ProductStatus": 2
    },
    {
        "SKU": "I6-640A",
        "StockStatus": 4,
        "ProductStatus": 2
    },
    {
        "SKU": "87070130A",
        "StockStatus": 4,
        "ProductStatus": 2
    }
]
🟢200unauthorized
Previous
Get the details of the specified product
Next
Download the images of the specified product
Built with