获取单个部门信息
GET
https://open.feishu.cn/open-apis/contact/v3/departments/{department_id}
使用user_access_token时,用户需要有待查询部门的可见性,如果需要获取根部门信息,则要求员工可见所有人。
错误码
HTTP状态码 | 错误码 | 描述 | 排查建议 |
---|---|---|---|
400 | 40001 | param error | 参数错误。 |
400 | 43010 | big dept forbid recursion error | 超大部门不允许进行查询。 |
400 | 40003 | internal error | 内部错误,请提供 X-Request-Id向客服反馈。联系客服。 |
403 | 40004 | no dept authority error | 操作的部门需在通讯录权限范围中,了解更多 |
400 | 40008 | dept Info is null error | 部门的信息不能为空 |
401 | 42008 | tenant id is invalid error | 请检查请求租户是否为合法租户。 |
400 | 40015 | department not exist | 部门不存在,请检查参数是否正确 |
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://open.feishu.cn/open-apis/contact/v3/departments/' \
--header 'Authorization;'
响应示例响应示例
{
"code": 0,
"msg": "success",
"data": {
"department": {
"name": "DemoName",
"i18n_name": {
"zh_cn": "Demo名称",
"ja_jp": "デモ名",
"en_us": "Demo Name"
},
"parent_department_id": "D067",
"department_id": "D096",
"open_department_id": "od-4e6ac4d14bcd5071a37a39de902c7141",
"leader_user_id": "ou_7dab8a3d3cdcc9da365777c7ad535d62",
"chat_id": "oc_5ad11d72b830411d72b836c20",
"order": "100",
"unit_ids": [
"custom_unit_id"
],
"member_count": 100,
"status": {
"is_deleted": false
},
"leaders": [
{
"leaderType": 1,
"leaderID": "ou_7dab8a3d3cdcc9da365777c7ad535d62"
}
],
"group_chat_employee_types": [
[
1,
2,
3
]
]
}
}
}
请求参数
Path 参数
department_id
string
必需
Query 参数
department_id
string
可选
user_id_type
string
可选
department_id_type
string
可选
Header 参数
Authorization
string
必需
默认值:
Bearer {{access_token}}
Content-Type
string
必需
默认值:
application/json; charset=utf-8
返回响应
修改于 2023-01-12 06:22:48