List Categories (Management)
Classification management listReturn parameter description| parameter name | type | description |
|---|
| items.cate_id | int | classification id |
| items.parent_id | int | Parent classification id |
| items.title | string | classification name |
| items.orderby | string | sort |
| items.show_type | string | Display status 0 All-day display 1 No display/Custom display |
| items.settime | array | Display time period |
| items.settime.stime | string | Show start time |
| items.settime.ltime | string | Display end time |
| items.settime.stime_time | string | Start time Seconds (Seconds relative to 0 o'clock on the day) |
| items.settime.ltime_time | string | End time Seconds (Seconds relative to 0 o'clock on the day) |
| items.childrens | array | secondary classification array |
Request
Body Params application/x-www-form-urlencodedRequired
Request Code Samples
curl --location '/api.php?API=biz%2Fproduct%2Fcate%2Fitems' \
--header 'Authorization: {{bearerToken}}' \
--data-urlencode 'data={"cate_id":null}' \
--data-urlencode 'CLIENT_API=BIZ' \
--data-urlencode 'openid={{openid}}'
Responses
{
"data": {
"items": [
{
"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:26:43