待办任务变更
事件描述
待办任务在待办中心侧被处理时触发。
订阅说明
事件主体 | kso.todo_task |
---|---|
权限要求 | 查询待办任务 kso.task.read |
解密方式 | 详见 解密算法 |
事件体(解密前)
名称 | 参数类型 | 说明 |
---|---|---|
topic | string | 消息主题 kso.todo_task |
operation | string | 消息变更动作update :更新 |
time | integer | 时间(秒为单位的时间戳) |
nonce | string | iv 向量(解密时使用) |
signature | string | 消息签名 |
encrypted_data | string | 消息变更的加密字段 |
事件体示例(解密前)
json
{
"topic": "kso.todo_task",
"operation": "update",
"time": 1704074400,
"nonce": "71***********7",
"signature": "w6**********6Q",
"encrypted_data": "B7**********iA=="
}
事件体数据(解密后)
名称 | 参数类型 | 是否必带 | 说明 |
---|---|---|---|
task_id | string | 是 | 待办任务 id |
action_key | string | 是 | 操作行为 key |
reason | string | 否 | 拒绝原因 |
事件体数据示例(解密后)
json
{
"task_id": "string",
"action_key": "string",
"reason": "string"
}