Skip to content

流程删除

1、接口说明

我的发起的删除接口

2、接口类型

DELETE

3、接口使用

3.1、接口地址

http://xxxx/api/workflow/Engine/FlowLaunch/{id}

3.2、 调用示例

js
export function Delete (id) {
  return request({
    url: `${base}/${id}`,
    method: 'DELETE'
  })
}

3.2、入参

入参入参类型是否必须说明
idstring流程实例id,flow_task表

3.3、返回结果

json
{
  "code": 0,
  "data": {},
  "msg": "string"
}