应用场景:第三方服务可以把需要用户处理的业务信息通过待办的方式推送到消息列表,用户点击待办消息后可以进入对应的应用中完成处理。
接口名称:发送待办消息接口
接口地址:能力开放平台域名/openplatform/open/todo.action?generate
数据类型:JSON
编码格式:x-www-form-urlencoded
参数说明
参数 | 参数类型 | 说明 |
---|---|---|
appcode | String | 接入应用系统接入代码 |
modulecode | String | 服务模块接入代码 |
busitype | String | 办理事项类型 0:办件信息 1:咨询信息 2:预约信息 |
businame | String | 办理事项名称(如:公积金查询等由业务方自定义) |
busiid | String | 生成的待办所关联的第三方服务业务记录的ID |
title | String | 待办标题 |
content | String | 待办内容(文本格式,非必填) 用户点击详情时如有link,优先跳转链接页面,没有链接展示内容页面 |
link | String | 待办跳转链接(建议去掉ip及端口,在单点传输时拼接) |
acceptdept | String | 受理部门 |
acceptdate | String | 受理时间 yyyy-MM-dd hh:mm:ss |
acceptstate | String | 受理环节(办理中、出证办结) |
userid | String | 待办接受人ID (晋来办) |
isdo | String | 目标处理状态,0表示待办,1表示已办,默认为0 |
pushstate | String | 是否进行推送,false:不推送 true:推送 默认为false |
pushtitle | String | 推送标题 当推送标题为空时,以待办标题进行推送 |
pushcontent | String | 推送内容 当推送内容为空时,以待办内容进行推送 |
timestamp | String | 时间戳(10 位数字) |
sign | String | 用其他字段和 appcode算出来的加密字符串 |
返回参数说明 | ||
参数 | 参数类型 | 说明 |
status | String | 发送状态 200:成功 300:异常 302:接口没有权限,请与管理员联系 |
msg | String | 信息说明 |
requestid | String | 平台业务编号 |
应用场景:变更待办消息的处理状态、删除状态。
接口名称:待办处理接口
接口地址:能力开放平台域名/openplatform/open/todo.action?updatetodo
数据类型:JSON
编码格式:x-www-form-urlencoded
参数说明
参数 | 参数类型 | 说明 |
---|---|---|
appcode | String | 接入应用系统接入代码 |
modulecode | String | 服务模块接入代码 |
sourcecid | String | 即发送待办的第三方服务业务记录的ID |
userid | String | 待办接受人ID (晋来办) |
content | String | (非必填,未空时不更新原字段) 调整待办内容(文本格式,非必填) 用户点击详情时如有link,优先跳转链接页面,没有链接展示内容页面 |
link | String | (非必填,未空时不更新原字段) 调整跳转链接(建议去掉ip及端口,在单点传输时拼接) |
acceptdept | String | (非必填,未空时不更新原字段) 受理部门 |
acceptdate | String | 受理时间 yyyy-MM-dd hh:mm:ss |
acceptstate | String | 受理环节(办理中、出证办结) |
isdo | String | 目标处理状态,0表示待办,1表示已办,默认为0 |
isdelete | String | 目标删除状态,0表示未删除,1表示已删除 |
pushstate | String | 是否进行推送,false:不推送 true:推送 默认为false |
pushtitle | String | 推送标题 当推送标题为空时,以待办标题进行推送 |
pushcontent | String | 推送内容 当推送内容为空时,以待办内容进行推送 |
timestamp | String | 时间戳(10 位数字) |
sign | String | 用其他字段和 appcode算出来的加密字符串 |
返回参数说明 | ||
参数 | 参数类型 | 说明 |
status | String | 发送状态 200:成功 300:异常 302:接口没有权限,请与管理员联系 |
msg | String | 信息说明 |
requestid | String | 平台业务编号 |