Flowable入门系列文章135 - 任务 09
作者:互联网
1、获取组或用户的任务的所有身份链接
GET运行时/任务/ {taskId} / identitylinks /用户
GET运行时/任务/ {taskId} / identitylinks /组
仅返回以用户或组为目标的标识链接。响应正文和状态码与获取任务的完整身份链接列表完全相同。
2、获取任务上的单个身份链接
GET运行时/任务/ {taskId} / identitylinks / {family} / {identityId} / {type}
表1.获取组或用户任务的所有身份链接 - URL参数
参数 | 需要 | 值 | 描述 |
---|---|---|---|
任务id | 是 | 串 | 任务的ID。 |
家庭 | 是 | 串 | 无论是groups或users,取决于什么样的身份为目标。 |
identityId | 是 | 串 | 身份证件的身份证件。 |
类型 | 是 | 串 | 身份链接的类型。 |
表2.获取组或用户任务的所有身份链接 - 响应代码
响应码 | 描述 |
---|---|
200 | 表示找到并返回了任务和标识链接。 |
404 | 指示未找到请求的任务,或者该任务没有请求的身份链接。状态包含有关此错误的其他信息。 |
成功回应机构:
{
"userId" : null,
"groupId" : "sales",
"type" : "candidate",
"url" : "http://localhost:8081/flowable-rest/service/runtime/tasks/100/identitylinks/groups/sales/candidate"
}
3、在任务上创建身份链接
POST运行时/任务/ {taskId} / identitylinks
表3.在任务 - URL参数上创建标识链接
参数 | 需要 | 值 | 描述 |
---|---|---|---|
任务id | 是 | 串 | 任务的ID。 |
请求正文(用户):
{
"userId" : "kermit",
"type" : "candidate",
}
请求正文(组):
{
"groupId" : "sales",
"type" : "candidate",
}
表4.在任务上创建标识链接 - 响应代码
响应码 | 描述 |
---|---|
201 | 表示已找到任务并创建了标识链接。 |
404 | 指示未找到请求的任务,或者该任务没有请求的身份链接。状态包含有关此错误的其他信息。 |
成功回应机构:
{
"userId" : null,
"groupId" : "sales",
"type" : "candidate",
"url" : "http://localhost:8081/flowable-rest/service/runtime/tasks/100/identitylinks/groups/sales/candidate"
}
上面文章来自盘古BPM研究院:http://vue.pangubpm.com/
文章翻译提交:https://github.com/qiudaoke/flowable-userguide
了解更多文章可以关注微信公众号:
标签:identitylinks,candidate,Flowable,09,任务,135,type,链接,身份 来源: https://blog.csdn.net/qq_30739519/article/details/122764444