员工身份(EIAM)

删除用户兼职兼岗

接口

# 权限

身份管理API是以应用维度授权的,在调用接口前需为不同的应用设置接口权限,详情请参考API权限

权限代码 描述
user_all 用户管理接口的读写权限
all 全部接口读写权限

# 请求说明

DELETE https://{your_domain}/api/v2/tenant/users/{user_id}/part-time-job/{job_id}

# 请求头

参数名 中文名称 必须 类型 描述
Authorization 授权 String 格式:Bearer {access_token}
Content-Type 内容类型 String 固定值:application/json; charset=utf-8

# 请求示例

根据请求的用户ID参数删除用户的兼职兼岗信息。

# 请求参数

参数名 中文名称 必须 类型 描述
user_id 用户id String 要修改的用户ID
job_id 兼职兼岗id String 要修改的兼职兼岗ID

# 返回示例

成功示例:
HTTP/1.1 204 No Content

错误示例:
HTTP/1.1 400 Bad Request
{
  "error_msg": "用户不存在",
  "error_code": "USER.0001"
}
1
2
3
4
5
6
7
8
9

# 返回参数

# 错误码

状态码 错误码 错误信息 处理措施
400 ENT.CONFIG.0031 任职管理功能未开启,请先开启此功能 请先在企业中心开启任职管理
The job management function is not enabled, please enable this function first
400 USER.0001 用户不存在 请检查对应用户是否存在
User does not exist
400 USER.0093 用户任职信息不存在 请检查对应岗位是否存在
The user's employment information does not exist