# 接口说明

调用本接口,对当前任务发起催办,当前待办任务上存在催办标签

# 权限

要调用此API,需要申请poa能力,获取poa token,接口请求头中添加 Authorization 值为token

# 请求方法

报文样例

POST /apis/ttc/v1/transaction/poa/taskCuiBanNew
Host: poa地址
Authorization:String
Content-Type:application/json

{
  "appId": "GzqhyfpMLSEexyO78bDgO-UWlK6PwOyAE",
  "creator": "smartadmin",
  "instructions": "催你办",
  "taskId": "TASK0002"
}
1
2
3
4
5
6
7
8
9
10
11

# Header参数

名称 类型 是否必填 描述
Authorization String 接口访问凭证

# Body参数

名称 类型 是否必填 描述
appId String 应用id
taskId String 任务ID
creator String 催办人
instructions String 催办说明

# 接口调用成功返回

{
  "took": 0,
  "timestamp": 1669865274790,
  "code": 0,
  "message": "催办成功",
  "data": null
}
1
2
3
4
5
6
7

# 接口调用失败返回

催办为非批量接口 接口code响应500为失败

{
  "took": 0,
  "timestamp": 1669865514444,
  "code": 500,
  "message": "催办失败:taskId不存在",
  "data": null
}
1
2
3
4
5
6
7
  • code说明:
code message 说明
500 xxx is null 参数校验不合法
500 * 业务逻辑异常