Return parameter description| parameter name | type | description |
|---|
| data.cate_id | string | classification ID |
| data.parent_id | string | Parent Category ID |
| data.title | string | classification name |
| data.orderby | string | sort |
| data.show_type | int | Display method 0 Full day display 1 Set time period |
| data.time | array | Required if show_type=1. Display time period |
| data.time.stime | string | start time |
| data.time.ltime | string | end time |
| data.childrens | array | Subcategories under this category |
Request
Body Params application/x-www-form-urlencodedRequired
Request Code Samples
curl --location '/api.php?API=biz%2Fproduct%2Fcate%2Fdetail' \
--header 'Authorization: {{bearerToken}}' \
--data-urlencode 'data={"cate_id":"1867"}' \
--data-urlencode 'CLIENT_API=BIZ' \
--data-urlencode 'openid={{openid}}'
Responses
{
"data": {
"cate_id": "string",
"parent_id": "string",
"title": "string",
"orderby": "string",
"show_type": "string",
"settime": [
{
"stime": "6:00",
"ltime": "18:00",
"stime_time": "21600",
"ltime_time": "64800"
}
],
"childrens": [
{
"cate_id": "string",
"parent_id": "string",
"title": "string",
"orderby": "string",
"show_type": "string",
"settime": [
{
"stime": "6:00",
"ltime": "18:00",
"stime_time": "21600",
"ltime_time": "64800"
}
],
"childrens": [
{}
]
}
]
},
"error": "0",
"message": "success"
}
Modified at 2026-04-21 03:25:22