员工身份(EIAM)

禁用组织

接口

# 权限

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

权限代码 描述
org_all 组织管理接口的读写权限
all 全部接口读写权限

# 请求说明

PUT https://{your_domain}/api/v2/tenant/organizations/{org_id}/disable

# 请求头

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

# 请求包体示例

# 请求参数

参数名 中文名称 必须 类型 描述
org_id 组织id String 组织id

# 返回示例

成功示例: 
HTTP/1.1 200 OK
Content-Type: application/json
{
    "org_id": "20220412142914549-1E50-B49C521A4"
}

错误示例:
HTTP/1.1 400 Bad Request
{
    "error_code": "ORG.0001",
    "error_msg": "组织不存在"
}
1
2
3
4
5
6
7
8
9
10
11
12
13

# 返回参数

参数名 中文名称 类型 描述
org_id 组织id String 系统自动生成

# 错误码

状态码 错误码 错误信息 处理措施
400 ORG.0001 组织不存在 请检查组织是否存在
Organization does not exist
400 ORG.0024 当前组织下存在未禁用的子组织不能被禁用 请检查当前组织下存在的子组织是否被禁用
Existing non-disabled child organizations under the current organization cannot be disabled
400 ORG.0026 当前组织下存在未禁用的用户不能被禁用 请检查当前组织下存在的用户是否被禁用
Existing non-disabled users in the current organization cannot be disabled