Skip to content
开发文档
能力中心
应用市场
WebOffice
开发者后台

待办任务变更

事件描述

待办任务在待办中心侧被处理时触发。

订阅说明

事件主体kso.todo_task
权限要求查询待办任务 kso.task.read
解密方式详见 解密算法

事件体(解密前)

名称参数类型说明
topicstring消息主题 kso.todo_task
operationstring消息变更动作
update:更新
timeinteger时间(秒为单位的时间戳)
noncestringiv 向量(解密时使用)
signaturestring消息签名
encrypted_datastring消息变更的加密字段

事件体示例(解密前)

json
{
  "topic": "kso.todo_task",
  "operation": "update",
  "time": 1704074400,
  "nonce": "71***********7",
  "signature": "w6**********6Q",
  "encrypted_data": "B7**********iA=="
}

事件体数据(解密后)

名称参数类型是否必带说明
task_idstring待办任务 id
action_keystring操作行为 key
reasonstring拒绝原因

事件体数据示例(解密后)

json
{
  "task_id": "string",
  "action_key": "string",
  "reason": "string"
}
回到旧版