-
Notifications
You must be signed in to change notification settings - Fork 2
Webhook
huang wei edited this page Jul 6, 2018
·
7 revisions
在post payload_url时,会带上相关Http Header
-
X-Slp-Event事件名称
| Key | Type | Description |
|---|---|---|
action |
string |
|
assignemnt |
object |
|
assignemnt[response] |
object |
填写的数据 |
assignment[journey] |
object |
用户发起的一条流程 |
assignment[user] |
User |
发起人 or 处理人 |
flow |
object |
action 可能值
-
proposed发起 -
approved通过 -
refused回退 -
transferred转交 -
cancelled发起人撤销 -
suspended异常 -
finished流程完成 -
aborted管理员终止
Webhook payload example
{
"action":"proposed",
"assignment":{
"id":"742",
"created_at":"2018-07-06 09:50:39 +0800",
"updated_at":"2018-07-06 09:50:39 +0800",
"vertex_id":"137",
"status":"processing",
"response":{
"id":"548810",
"created_at":"2018-07-06 09:49:34 +0800",
"updated_at":"2018-07-06 09:50:58 +0800",
"cached_values":{
"38827":{
"value":[
"测试"
],
"text_value":[
"测试"
],
"exported_value":[
"测试"
]
},
"38828":{
"value":[
{
"id":"31969",
"gid":"gid://skylark/Option/31969",
"value":"新选项2"
}
],
"text_value":[
"新选项2"
],
"exported_value":[
"新选项2"
]
}
}
},
"journey":{
"id":"226",
"created_at":"2018-07-06 09:50:39 +0800",
"updated_at":"2018-07-06 09:50:39 +0800",
"sn":"1620180706094934000042",
"status":"processing",
"current_vertex_id":"139",
"reviewer_vertex_ids":[
"137"
]
},
"user":{
"id":"17013",
"created_at":"1924-12-19 22:52:39 +0800",
"updated_at":"2018-06-27 10:15:03 +0800",
"name":"aaaa",
"identifier":"12345",
"headimgurl":"/non-digested-assets/avatars/default.png"
}
},
"flow":{
"id":"16",
"created_at":"2018-05-14 15:28:10 +0800",
"updated_at":"2018-07-06 09:50:19 +0800",
"title":"简单-2层级"
}
}| Key | Type | Description |
|---|---|---|
action |
string |
|
form |
object |
表单信息 |
response |
object |
填写数据 |
response[user] |
object |
填写人 |
action 可能值
-
created创建 -
updated更新 -
destroyed删除
Webhook payload example
{
"action":"created",
"form":{
"id":"4001",
"created_at":"2018-06-28 15:07:49 +0800",
"updated_at":"2018-06-28 15:07:49 +0800",
"title":"测试webhook"
},
"response":{
"id":"548814",
"created_at":"2018-07-06 10:05:33 +0800",
"updated_at":"2018-07-06 10:05:33 +0800",
"cached_values":{
"38821":{
"value":[
"测试1"
],
"text_value":[
"测试1"
],
"exported_value":[
"测试1"
]
},
"38822":{
"value":[
"测试2"
],
"text_value":[
"测试2"
],
"exported_value":[
"测试2"
]
},
"38823":{
"value":[
{
"value":"测试输入其他的内容"
}
],
"text_value":[
"测试输入其他的内容"
],
"exported_value":[
"测试输入其他的内容"
]
}
},
"user":{
"id":"17013",
"created_at":"1924-12-19 22:52:39 +0800",
"updated_at":"2018-06-27 10:15:03 +0800",
"name":"aaaa",
"identifier":"12345",
"headimgurl":"/non-digested-assets/avatars/default.png"
}
}
}