查询组织内部门

更新时间:

通过 OpenAPI 查询组织内部门。

适用版本

标准版、专属版

授权信息

请先获取个人访问令牌,具体操作,请参见获取个人访问令牌

请求语法

curl -X 'GET' \
  'https://<domain>/oapi/v1/platform/organizations/<organizationId>/departments?parentId=<parentId>' \
  -H 'Content-Type: application/json' \
  -H 'x-yunxiao-token: <token>'

请求参数

参数

位置

是否必填

描述

示例值

organizationId

path

组织 ID。

99d1****71d4

parentId

query

父部门 ID。

f5b8****7a1c

page

query

当前页,默认1。

perPage

query

每页数据条数,默认100。

请求示例

curl -X 'GET' \
  'https://test.rdc.aliyuncs.com/oapi/v1/platform/organizations/99d1****71d4/departments?parentId=f5b8****7a1c' \
  -H 'Content-Type: application/json' \
  -H 'x-yunxiao-token:pt-0fh3****0fbG_35af****0484'

返回参数

参数

描述

示例值

id

部门 ID。

8446****ce9f

organizationId

组织 ID。

99d1****71d4

name

部门名称。

组织部门

creatorId

部门创建人。

0ef2****104b

parentId

父部门 ID。

f5b8****7a1c

hasSub

是否有子部门。

true

返回示例

[
  {
    "id": "8446****ce9f",
    "organizationId": "99d1****71d4",
    "name": "组织部门",
    "creatorId": "0ef2****104b",
    "parentId": "f5b8****7a1c",
    "hasSub": true
  },
  {
    "id": "b4df****d122",
    "organizationId": "99d1****71d4",
    "name": "其他部门",
    "creatorId": "0ef2****104b",
    "parentId": "f5b8****7a1c",
    "hasSub": true
  }
]

响应头

 connection: keep-alive 
 content-length: 481 
 content-type: application/json; charset=UTF-8 
 date: Thu,04 Jul 2024 13:44:21 GMT 
 x-next-page: 1 
 x-per-page: 100  //每页大小 
 x-prev-page: 1 
 x-total: 2   //总条数
 x-total-pages: 1  //总页数

响应元素

参数

描述

示例值

x-next-page

下一页。

1

x-per-page

每页数据条数。

100

x-prev-page

上一页。

1

x-total

总数据量。

2

x-total-pages

总分页数。

1