企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持知识库和私有化部署方案 广告
# 获取练习基本信息列表 |拥有此API的权限集| |:----- | | 练习管理-查询练习信息 | **请求方式及url** - 请求方式:`POST` - 请求头:`Content-Type:application/json` - 接口地址:`https://api.xiaoe-tech.com/xe.practice.api.list.base/1.0.0` - 频率限制: `10秒3000次` {% api method="POST", data= { "access_token": "xe_xxxxx", "search_content":"", "page_index":1, "page_size":10 }, url="https://api-doc.xiaoe-tech.com/_agent/forward?url=https://api.xiaoe-tech.com/xe.practice.api.list.base/1.0.0" %} {% endapi %} **请求参数** |参数名|必选|类型|说明| |:---- |:---|:----- |----- | |access_token |是 |string |[专属token](./../get_access_token.md) | |search_content |是 |string | 搜索内容 | |page_index |是 |int | 页码 | |page_size |是 |int | 页大小 | **请求示例** ``` { "access_token": "xxxxx", "search_content":"", "page_index":1, "page_size":10 } ``` **返回参数** |参数名|类型|说明| |:----- |:-----|----- | |code |int |状态码 | |msg |string |请求状态描述信息 | |data |object |当前页数 | |data.list |array |列表 | |data.total |int |总数 | `data.list`考试列表 |参数名|类型|说明| |:----- |:-----|----- | |app_id |string |店铺id | |practice_id |string |练习id | |practice_name|string |练习名称 | |created_at |string |创建时间 | |practice_count |int |提交人数 | |practice_sum |int |提交人次 | |resource_ids |array|关联课程资源id列表| **返回示例** ``` { "code": 0, "msg": "操作成功", "data": { "list": [         { "app_id": "appAKLWLitnxxxx", "created_at": "2022-08-19 14:21:38", "practice_count": 0, "practice_id": "wb_62ff2bf2c60e2_eUhRq7Yj", "practice_name": "新建练习-关联付费视频", "practice_sum": 0, "resource_ids": [ "v_62fdfd02e4b0eca59c24ac86"             ]         }        ], "total": 45 } } ```