# 资金管理-BPM
简介:资金管理
HOST:localhost:8079
联系人:
Version:v1.0
接口路径:/v2/api-docs
[TOC]
# 资金-BPM对接
# 流程结果返回
接口地址:/bpm/bpmCallBack
请求方式:POST
请求数据类型:application/json
响应数据类型:*/*,application/json
接口描述:
请求示例:
{
"bpmCode": "",
"bpmDeptCode": "",
"bpmDeptName": "",
"businessCode": "",
"result": true
}
请求参数:
| 参数名称 | 参数说明 | 请求类型 | 是否必须 | 数据类型 | schema |
|---|---|---|---|---|---|
| req | req | body | true | BpmCallBackReq | BpmCallBackReq |
| bpmCode | true | string | |||
| bpmDeptCode | true | string | |||
| bpmDeptName | true | string | |||
| businessCode | true | string | |||
| result | true | boolean |
响应状态:
| 状态码 | 说明 | schema |
|---|---|---|
| 200 | OK | HttpResult«BpmCallBackRes» |
| 201 | Created | |
| 401 | Unauthorized | |
| 403 | Forbidden | |
| 404 | Not Found |
响应参数:
| 参数名称 | 参数说明 | 类型 | schema |
|---|---|---|---|
| code | integer(int32) | integer(int32) | |
| data | BpmCallBackRes | BpmCallBackRes | |
| success | boolean | ||
| message | string |
响应示例:
{
"code": 0,
"data": {
"success": true
},
"message": ""
}