Delete SSO User


Delete an SSO user 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/user/sso/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 SSO user belongs to. How to get orgId>>

Request Parameters (Body)

Name Required/Optional Data Type Description
userId Required String The SSO user ID.

Samples

Request Sample

url: https://{apigw-address}/enos-iam-service/v2.3/user/sso/delete?orgId=yourOrgId
method: POST
request Body:
{
  "userId":"userId359"
}

Return Sample

{
  "fail": false,
  "success": true,
  "failed": false,
  "message": "",
  "status": 0,
  "successful": true
}