Delete User Group¶
Delete a user group from the OU.
Operation Permissions¶
Applications assigned with the administrator policy in the OU.
Request Format¶
POST https://{apigw-address}/enos-iam-service/v2.3/usergroup/delete
Request Parameters (URI)¶
Name |
Location (Path/Query) |
Required/Optional |
Data Type |
Description |
---|---|---|---|---|
orgId |
Query |
Required |
String |
The ID of the OU to which the user group belongs to. How to get orgId>> |
Request Parameters (Body)¶
Name |
Required/Optional |
Data Type |
Description |
---|---|---|---|
id |
Required |
String |
The user group ID. |
Samples¶
Request Sample¶
url: https://{apigw-address}/enos-iam-service/v2.3/usergroup/delete?orgId=yourOrgId
method: POST
request Body:
{
"id":"userGroupId359"
}
Return Sample¶
{
"fail": false,
"success": true,
"status": 0,
"message": null,
"data": true
}