获取表单基本信息
描述
获取指定表单的基本信息
使用须知
开发前,请仔细阅读开发指南。
- POST请求头
{"Authorization": "Bearer YOUR_APIKEY"}
YOUR_APIKEY
请阅读开发指南了解。
接口URL
POST - /openapi/v1/app/{app_id}/entry/{entry_id}/info
名词解释
名称 | 说明 |
---|---|
app_id | 应用ID |
entry_id | 该应用内的表单ID |
app_id
+entry_id
表示全局唯一的表单标识,前往开发平台中的API文档进行查看。
请求参数
无
响应参数
参数名 | 示例值 | 参数类型 | 参数描述 |
---|---|---|---|
name | 流程表单 | String | 表单名称 |
type | form | String | 表单类型 |
formId | 5ebc5c2deee7ea61f7ac25df | String | 表单id |
hasFlow | true | Boolean | 流程是否开启 |
hasCoop | 0 | String | 是否流程表,0为是,1为否 |
public | - | Object | 外链 |
public.isPublic | false | Boolean | 是否开启外链 |
public.publicLink | - | String | 外链url |
query | - | Object | 公开查询 |
query.isQuery | true | Boolean | 是否开启公开查询 |
query.queryLink | https://xxx.xxxxxx.com/q/52412e10bc3ffc2750f73afd | String | 公开查询url |
响应数据样例
{
"name": "流程表单",
"type": "form",
"formId": "5ebc5c2deee7ea61f7ac25df",
"hasFlow": true,
"hasCoop": "0",
"public": {
"isPublic": false,
"publicLink": ""
},
"query": {
"isQuery": true,
"queryLink": "https://xxx.xxxxxx.com/q/52412e10bc3ffc2750f73afd"
}
}