tvcmall_openapi
  1. Category
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. Category

Get parent of the category specified

GET
https://openapi.tvc-mall.com/OpenApi/Category/GetParent
Last modified:2023-12-04 06:19:19
Maintainer:Alfred.Tvc
Get parent of the category specified in the parameters

Request

Query Params
categoryCode
string 
required
Category Code
Example:
C0001
Header Params
Authorization
string 
required
Authorization
Example:
TVC 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/Category/GetParent?categoryCode=C0001' \
--header 'Authorization: TVC 2+s8CDVEwkmRHSJ9lorE5Q=='

Responses

🟢200success
application/json
Body
CateoryList
array [object {5}] 
required
Code
string 
Category Code
optional
Category Code
Name
string 
Category Name
optional
Category Name
ParentName
string 
Parent Name of the category
optional
Parent Name of the category
ParentCode
string 
Parent Code of the category
optional
Parent Code of the category
Status
string 
optional
Example
{
    "CateoryList": [
        {
            "Code": "C00010001",
            "Name": "Bar Phones",
            "ParentName": "Phones & Tablets",
            "ParentCode": "C0001",
            "Status": "Valid"
        }
    ]
}
Previous
Get children of the category specified
Next
Search products
Built with