获取信息采集列表
拥有此API的权限集 |
---|
信息采集/表单管理-查询 |
请求方式及url
- 请求方式:
POST
- 请求头:
Content-Type:application/json
- 接口地址:
https://api.xiaoe-tech.com/xe.information.form.get/1.0.0
- 频率限制:
10秒500次
在线调试工具
请求
响应
请求参数
参数名 | 必选 | 类型 | 说明 |
---|---|---|---|
access_token | 是 | string | 专属token |
collect_start_time | 否 | string | 信息采集表单创建时间段的起始时间,缺省为不限制开始时间。格式为:yyyy-MM-dd HH:mm:ss,如2020-01-07 12:00:00 |
collect_end_time | 否 | string | 信息采集表单创建时间段的结束时间,缺省为不限制结束时间。格式为:yyyy-MM-dd HH:mm:ss,如2020-01-07 12:00:00 |
page | 是 | int | 页码,表示第几页,从1开始 |
page_size | 是 | int | 每页条数,最大50条 |
请求示例
{
"access_token": "xe_xxxxx",
"collect_start_time": "2020-01-01 00:00:00",
"collect_end_time": "2020-10-10 00:00:00",
"page": 1,
"page_size": 3
}
返回参数说明
参数名 | 类型 | 说明 |
---|---|---|
code | int | 返回码,0表示成功,其他为错误 |
msg | string | 对返回码的文本描述内容 |
data.form_list | array | 表单列表(数组) |
data.form_list.form_name | string | 表单标题 |
data.form_list.form_id | int | 信息采集id |
data.form_list.collect_count | int | 采集条数 |
data.form_list.is_repeat | int | 是否支持重复采集:1-支持,0-不支持 |
data.form_list.synchronization | int | 是否支持用户数据同步;1-支持,0-不支持 |
data.total | int | 查询结果记录数 |
备注
- 更多返回错误代码请看首页的错误代码描述
返回示例
"code": 0,
"msg": "success",
"data": {
"form_list": [
{
"form_id": "in_Vx",
"form_name": "x",
"collect_count": 1,
"is_repeat": 0,
"synchronization": 0
},
{
"form_id": "in_xxxx",
"form_name": "hhhhh",
"collect_count": 1,
"is_repeat": 0,
"synchronization": 0
},
{
"form_id": "in_x",
"form_name": "x",
"collect_count": 1,
"is_repeat": 0,
"synchronization": 0
}
],
"total": 1907
}
}