- SDK/API嵌入方案说明(请先阅读)
- 通用功能
- SDK嵌入方账户相关(前端组件嵌入)
- API嵌入方案(后端接口嵌入)
- 使用说明
- 步骤1:换取企业凭证+同步用户
- 步骤3: 获取应用动作需要字段参数
- 步骤4:执行指定应用动作
- 高级:流程创建
- 企业成员相关
- 企业费用相关
- 企业账号授权相关
- 前端页面嵌入(ifram嵌入)方案
- 子流程对接方案相关
- 数据表
根据应用ID获取动作列表
POST
/api/openapi/action_list
最后修改时间:2025-07-03 01:38:05
请求参数
Body 参数application/json
corp_token
string
必需
timestamp
integer
必需
app_id
integer
应用ID
company_identification
integer
客户身份唯一标识
sign
string
可选
示例
{
"corp_token": "string",
"timestamp": 0,
"app_id": 0,
"company_identification": 0,
"sign": "string"
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://developer.jijyun.cn/api/openapi/action_list' \
--header 'Content-Type: application/json' \
--data-raw '{
"corp_token": "string",
"timestamp": 0,
"app_id": 0,
"company_identification": 0,
"sign": "string"
}'
返回响应
🟢200成功
application/json
Body
data
array [object {5}]
必需
action_id
integer
动作ID
desc
string
动作名称
action_type
integer
1是触发 2 是执行
action_describe
string
动作描述
action_key
integer
动作标识
msg
string
必需
code
integer
必需
RequestId
string
必需
示例
{
"data": [
{
"action_id": 1,
"desc": "当新数据添加到表单时",
"action_type": 1,
"is_end": 1,
"trigger_type": "2",
"request_type": null,
"action_describe": "当金数据指定表单有新增数据时触发流程并同步数据",
"sort": 1,
"dynamic_sample": 0,
"sub_type": "",
"action_key": 1
},
{
"action_id": 2,
"desc": "当表单数据被修改时",
"action_type": 1,
"is_end": 1,
"trigger_type": "2",
"request_type": null,
"action_describe": "当金数据指定表单有数据修改时触发流程并同步数据",
"sort": 1,
"dynamic_sample": 0,
"sub_type": "",
"action_key": 2
},
{
"action_id": 3,
"desc": "创建数据到指定表单中",
"action_type": 2,
"is_end": 1,
"trigger_type": null,
"request_type": "POST",
"action_describe": "将流程中的数据同步到金数据指定表单中",
"sort": 1,
"dynamic_sample": 0,
"sub_type": "creates",
"action_key": 3
},
{
"action_id": 2549,
"desc": "当有表单数据新增或修改时",
"action_type": 1,
"is_end": 0,
"trigger_type": "1",
"request_type": null,
"action_describe": "当有表单数据新增或修改时同步数据并触发流程",
"sort": 1,
"dynamic_sample": 0,
"sub_type": "",
"action_key": 2549
},
{
"action_id": 2552,
"desc": "修改指定表单中的数据",
"action_type": 2,
"is_end": 1,
"trigger_type": "0",
"request_type": "POST",
"action_describe": "修改指定表单中的数据",
"sort": 1,
"dynamic_sample": 0,
"sub_type": "modifies",
"action_key": 2552
},
{
"action_id": 2553,
"desc": "查询指定表单中数据列表信息",
"action_type": 2,
"is_end": 0,
"trigger_type": "0",
"request_type": "POST",
"action_describe": "查询指定表单中数据列表信息",
"sort": 1,
"dynamic_sample": 0,
"sub_type": "searches",
"action_key": 2553
},
{
"action_id": 2554,
"desc": "查询指定表单中的单条数据",
"action_type": 2,
"is_end": 0,
"trigger_type": "0",
"request_type": "POST",
"action_describe": "查询指定表单中的单条数据",
"sort": 1,
"dynamic_sample": 0,
"sub_type": "searches",
"action_key": 2554
}
],
"msg": "成功",
"code": 0,
"RequestId": "63e6bc2b-1feb-4940-a9fc-1d72e003f8c0"
}
修改于 2025-07-03 01:38:05