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

部门变更

事件描述

部门创建、部门更新、部门删除时触发。

订阅说明

事件主体kso.dept
权限要求查询通讯录信息 kso.contact.read
解密方式详见 解密算法

事件体(解密前)

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

事件体示例(解密前)

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

事件体数据(解密后)

名称参数类型是否必带说明
company_idstring企业 id
deptsarray[object]部门变更信息数组
∟ company_idstring企业 id
∟ dept_idstring部门 id
∟ srcobject部门事件变更前部门数据信息(变更动作之前的参数)
∟ ∟ leader_idsarray[string]部门领导 id(变更前)
∟ ∟ namestring部门名称(变更前)
∟ ∟ parent_idstring父部门 id(变更前)

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

json
{
  "company_id": "A*****6",
  "depts": [
    {
      "company_id": "A*****6",
      "dept_id": "Y*****3",
      "src": {
        "leader_ids": [
          "R*****1"
        ],
        "name": "云研发部",
        "parent_id": "T*****2"
      }
    }
  ]
}
回到旧版