审批流流程完成
# 描述
审批流流程完成
# 请求说明
请求方式:POST + application/json
请求路径:https://${填入所在云的域名}/cgi/crm/approvalTask/action?thirdTraceId=${随机字符串}
请求头填写 :参考公共参数填写
# 请求参数
| 参数 | 类型 | 是否必填 | 说明 |
|---|---|---|---|
| taskId | String | 是 | 流程任务Id,获取方式见 纷享开放平台-开发文档 (fxiaoke.com)接口 |
| opinion | String | 是 | 意见内容 |
| actionType | String | 是 | 操作类型:同意:agree ;拒绝:reject |
# 请求示例
{
"actionType": "agree",
"taskId": "taskId",
"opinion": "tongyi"
}
# 返回参数
| 参数 | 类型 | 说明 |
|---|---|---|
| traceId | string | 请求唯一ID |
| errorDescription | string | 错误描述 |
| errorMessage | string | 错误信息 |
| errorCode | Int | 查看错误码 |
# 返回示例
{
"traceId": "E-O.827xxxxxx",
"errorDescription": "success",
"errorMessage": "OK",
"errorCode": 0
}
# 注意事项
- 不能使用返回值的message字段做逻辑判断,errorMessage会有变化;