简要描述:

帮助中心 - 分类详情 - 请求URL:

POST/wapapi/addons/helpcenter/helpcenter/getQuesCategoryDetail

请求参数

参数名 是否必须 类型 说明
page_index int 当前页码
page_size int 分页条数
cate_id int 分类id
search_text string 搜索词汇

返回示例:

正确时返回:

{
	"code":1,
	"message":"操作成功",
	"data":{
		"total_count": 2//总页数
		"page_count": 1//当前页数
		"items": {
			{
				"question_id": 1,//文章id
				"title": "何支付1"//文章名字
			},
			{
				"question_id": 2,//文章id
				"title": "何支付2"//文章名字
			}
		}
		
	}

}

返回参数

参数名 是否必须 类型 说明
total_count int 总页数
page_count int 当前页数
items array 分类下的文章列表
question_id int 文章id
title string 文章名称

错误时返回:

{
    "code": -1,//code 只会 >0 和小于 0
    "message": "获取失败",//失败信息不固定,根据返回code进行判断
}