作者:管理员 历史版本:1 最后编辑:龚清 更新时间:2024-11-20 15:41
根据传入id查询,并返回表单模板信息
简述:
- 根据传入id查询,并返回表单模板信息
请求URL:
- http://ip:port/ibps/platform/v3/form/template/get
- URL中的ip需要替换为自己网关ip
- URL中的port需要替换为自己网关端口
请求方式:
- POST
请求参数:
- Headers:
名称 | 类型 | 是否必须 | 默认值 | 备注 | 其他信息 |
---|---|---|---|---|---|
X-Authorization-access_token | String | 是 | 系统令牌 |
- Query:
暂无
- Body:
名称 | 类型 | 是否必须 | 默认值 | 备注 | 其他信息 |
---|---|---|---|---|---|
formTemplateId | string | 是 | 表单模板id |
请求参数示例:
http://192.168.3.230:15100/ibps/business/v3/form/template/get?formTemplateId=1
返回示例:
{
"state": 200,
"request": null,
"message": "",
"cause": "",
"variables": {},
"data": {
"pk": "",
"name": "test",
"ip": null,
"createBy": "1",
"createTime": "2020-02-10 18:35:01",
"updateBy": null,
"updateTime": null,
"tenantId": null,
"dataStatus": null,
"dbtype": null,
"id": "1",
"alias": "test",
"desc": "test",
"typeId": null,
"style": null,
"content": "test"
}
}
返回参数说明:
名称 | 类型 | 备注 |
---|---|---|
data | FormTemplatePo | 表单模版 |
根据传入id查询,返回模板内容
简述:
- 根据传入id查询,返回模板内容
请求URL:
- http://ip:port/ibps/platform/v3/form/template/getContent
- URL中的ip需要替换为自己网关ip
- URL中的port需要替换为自己网关端口
请求方式:
- GET
请求参数:
- Headers:
名称 | 类型 | 是否必须 | 默认值 | 备注 | 其他信息 |
---|---|---|---|---|---|
X-Authorization-access_token | String | 是 | 系统令牌 |
- Query:
暂无
- Body:
名称 | 类型 | 是否必须 | 默认值 | 备注 | 其他信息 |
---|---|---|---|---|---|
formTemplateId | string | 是 | 表单模板id |
请求参数示例:
http://192.168.3.230:15100/ibps/business/v3/form/template/getContent?formTemplateId=1
返回示例:
{
"state": 200,
"request": null,
"message": "",
"cause": "",
"variables": {},
"data": "{\"test\":\"test\",\"id\":\"1\"}"
}
返回参数说明:
名称 | 类型 | 备注 |
---|---|---|
data | String |
表单模板列表(分页条件查询)数据
简述:
- 表单模板列表(分页条件查询)数据
请求URL:
- http://ip:port/ibps/platform/v3/form/template/query
- URL中的ip需要替换为自己网关ip
- URL中的port需要替换为自己网关端口
请求方式:
- POST
请求参数:
- Headers:
名称 | 类型 | 是否必须 | 默认值 | 备注 | 其他信息 |
---|---|---|---|---|---|
X-Authorization-access_token | String | 是 | 系统令牌 |
- Query:
暂无
- Body:
名称 | 类型 | 是否必须 | 默认值 | 备注 | 其他信息 |
---|---|---|---|---|---|
request | APIRequest[1] | 是 | 动态查询请求对象 |
请求参数示例:
{
"parameters": [],
"requestPage": {
"pageNo": 1,
"limit": 20
},
"sorts": []
}
返回示例:
{
"state": 200,
"request": null,
"message": "",
"cause": "",
"variables": {},
"data": {
"dataResult": [
{
"pk": "",
"name": "test",
"ip": null,
"createBy": "1",
"createTime": "2020-02-10 18:48:15",
"updateBy": null,
"updateTime": null,
"tenantId": null,
"dataStatus": null,
"dbtype": null,
"id": "1",
"alias": "test",
"desc": "test",
"typeId": null,
"style": null,
"content": "{\"test\":\"test\"}"
}
],
"pageResult": {
"limit": 3,
"page": 1,
"totalCount": 1,
"totalPages": 1
}
}
}
返回参数说明:
名称 | 类型 | 备注 |
---|---|---|
data | APIPageList< FormTemplatePo > | 表单模版 |
删除(批量)
简述:
- 删除表单模板记录
请求URL:
- http://ip:port/ibps/platform/v3/form/template/remove
- URL中的ip需要替换为自己网关ip
- URL中的port需要替换为自己网关端口
请求方式:
- POST
请求参数:
- Headers:
名称 | 类型 | 是否必须 | 默认值 | 备注 | 其他信息 |
---|---|---|---|---|---|
X-Authorization-access_token | String | 是 | 系统令牌 |
- Query:
暂无
- Body:
名称 | 类型 | 是否必须 | 默认值 | 备注 | 其他信息 |
---|---|---|---|---|---|
formTemplateIds | string[] | 是 | 表单模板信息id数组 |
请求参数示例:
http://192.168.3.230:15100/ibps/business/v3/form/template/remove?formTemplateIds=1
返回示例:
{
"state": 200,
"request": null,
"message": "删除表单模板成功",
"cause": "",
"variables": {},
"data": null
}
返回参数说明:
名称 | 类型 | 备注 |
---|---|---|
data | Void |
保存
简述:
- 保存表单模板信息
请求URL:
- http://ip:port/ibps/platform/v3/form/template/save/vo
- URL中的ip需要替换为自己网关ip
- URL中的port需要替换为自己网关端口
请求方式:
- POST
请求参数:
- Headers:
名称 | 类型 | 是否必须 | 默认值 | 备注 | 其他信息 |
---|---|---|---|---|---|
X-Authorization-access_token | String | 是 | 系统令牌 |
- Query:
暂无
- Body:
DataTemplateRequestVo 对象信息
名称 | 类型 | 是否必须 | 默认值 | 备注 |
---|---|---|---|---|
formKey | String | 否 | 表单key | |
boCode | String | 否 | bo定义CODE | |
pk | String | 否 | 主键ID | |
version | Integer | 否 | 0 | 版本号 |
data | String | 是 | 数据模板json |
请求参数示例:
{
"boCode": "test",
"data": "{\"pk\":\"\",\"name\":\"test\",\"ip\":null,\"createBy\":\"1\",\"createTime\":\"2020-02-10 18:35:01\",\"updateBy\":null,\"updateTime\":null,\"tenantId\":null,\"dataStatus\":null,\"dbtype\":null,\"alias\":\"test\",\"desc\":\"test\",\"typeId\":null,\"style\":null,\"content\":\"test\"}",
"formKey": "test",
"pk": "id",
"version": 1
}
返回示例:
{
"state": 200,
"request": null,
"message": "保存表单模板成功",
"cause": "",
"variables": {
"id": "676501339458502656"
},
"data": null
}
返回参数说明:
名称 | 类型 | 备注 |
---|---|---|
data | Void |
备注
- [1] : APIRequest为动态查询请求对象,详情请移步全局请求格式