open api
  1. Category
open api
  • 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 the details of the specified product with images
      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
  • Order
    • Create Order
      POST
    • Create Dropshipping Orders
      POST
    • Create order(Deprecated)
      POST
    • Get Order List
      GET
    • Get Order Information
      GET
  • Shipping
    • Shipping Calculation
      POST
    • Shipping Calculation Enhancement
      POST
  1. Category

Get children of the category specified

GET
/OpenApi/Category/GetChildren
Get children of the category specified in the parameters

请求参数

Query 参数

Header 参数

请求示例代码

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request GET '/OpenApi/Category/GetChildren?ParentCode=C0001' \
--header 'Authorization: TVC {{Authorization}}'

返回响应

🟢200success
application/json
Body

示例
{
    "CateoryList": [
        {
            "Code": "C00010004",
            "Name": "Android Phones",
            "ParentCode": "C0001",
            "Status": "Valid"
        },
        {
            "Code": "C00010002",
            "Name": "Tablets",
            "ParentCode": "C0001",
            "Status": "Valid"
        },
        {
            "Code": "C00010001",
            "Name": "Bar Phones",
            "ParentCode": "C0001",
            "Status": "Valid"
        },
        {
            "Code": "C00010003",
            "Name": "Watch Phones",
            "ParentCode": "C0001",
            "Status": "Valid"
        }
    ]
}
🟢200unauthorized
修改于 2025-04-18 12:21:58
上一页
Get Authorization
下一页
Get parent of the category specified
Built with