删除部门¶
功能说明¶
删除部门
接口地址¶
- 测试环境: https://openapi.guanaitong.tech/department/delete
- 生产环境: https://openapi.guanaitong.com/department/delete
HTTP请求方式¶
- Method: POST
- Content-Type: application/x-www-form-urlencoded
参数说明¶
-
公有参数
发送请求是必须传入公共参数,详见公共参数
-
私有参数
参数名称 | 是否必须 | 参数类型 | 长度限制 | 描述 |
---|---|---|---|---|
enterprise_code | 否 | string | [1,20] | 企业编号(集团必填,企业无需填写) |
dept_code | 是 | string | [1,50] | 部门编码 |
请求示例(HTTP)¶
POST /department/delete HTTP/1.1
Host: openapi.guanaitong.tech
Content-Type: application/x-www-form-urlencoded
Cache-Control: no-cache
access_token=6007bf4c6efeb798da35b843e4614cff&sign=dc2cb643d101d8ae96e857ff4ca24de23bf4f27f&
timestamp=1495094685&dept_code=S100
请求示例(JAVA SDK)¶
public class Main {
public static OpenClient openClient = new OpenClient(Constants.BASE_URL_TEST, "xxx", "xxx");
public static void main(String[] args) {
DepartmentDeleteRequest departmentDeleteRequest = new DepartmentDeleteRequest();
departmentDeleteRequest.setDeptCode("DEPT_0825_03");
String data = openClient.departmentApi().delete(departmentDeleteRequest);
System.out.println(data);
}
}
返回参数说明¶
参数名称 | 描述 |
---|---|
code | 返回码。详见错误返回码。 |
msg | 如果错误,返回错误信息。 |
data | 如果没有错误,返回部门编号 |