文档
测试

取得部门信息

GET
[host]/OAapp/v1/open-api/dept/get-depts

接口描述

取得时间段内发生变化的部门信息

请求头

参数名
类型
描述
必填
Content-Type
string
application/json;charset=UTF-8
必填
access_token
string
访问令牌
必填

请求参数

参数名
类型
描述
必填
update_time
string
指定时间,不填导出全部部门
必填

响应参数

参数名
类型
描述
必填
code
int
200000 : 正常 以外:异常
必填
message
string
异常内容
必填
data
object[]
返回的部门信息
可选
dept_id
string
部门ID
可选
dept_name
string
部门名
可选
dept_num
string
部门号
可选
is_company
int
0:部门 1:公司
可选
company_id
string
公司ID
可选
parent_id
string
父部门
可选
del_flag
int
0:有效 1:删除
可选
dept_order
int
部门排序
可选
updat_time
string
更新时间
可选

说明 / 示例

**请求示例** ```language host/OAapp/v1/open-api/dept/get-depts?updateTime="2023-09-01 08:00:00" ``` **响应示例** ```language { "code": 200000, "msg": "response_success", "data": [ { "dept_id": "部门ID", "dept_name": "部门名", "dept_num": "部门号", "is_company": 0, "company_id": "公司ID", "parent_id": "父部门", "del_flag": 0, "dept_order": 1, "updat_time": "2023-09-05 15:45" }, { "dept_id": "部门ID", "dept_name": "部门名", "dept_num": "部门号", "is_company": 0, "company_id": "公司ID", "parent_id": "父部门", "del_flag": 0, "dept_order": 1, "updat_time": "2023-09-05 15:45" } ] } ```