Skip to main content

User Creation Status

When a new user is created in mID Provider (IAM), verify whether the user is provisioned appropriately across all the downstream systems.

Resource Informations

NameValue
Requires authentication?Yes
Rate limited?No

Request

Request headers

KeyValue
AuthorizationBearer token
Content-Typeapplication/json

HTTP request URL for SSMS

GET https://{tenantId}.{hostname}/digitanium/v4/users/{userName}/provision/status

HTTP request URL for SHIFT

GET https://{hostname}/auth/realms/{tenantId}/v3_user/{userName}/provision/status
note

API requests must be made over https. Calls made over plain http will fail.

Parameters

No parameter fields are required.

Request body

No request body fields are required.

Response

Field NameTypeDescription
messageStringMessage explains result of the API call. Refer Response status Information for details.
statusStringThe status of the API call. Refer Response status Information for details.
subSystemIntegersubSystem categorizes the type of API that has been called. Refer Subsystem details for details.
dataArrayUser status details for the given userId. Refer Data Representation for details.

Sample Response

{
"message": "User status fetched successfully",
"status": "Success",
"subSystem": 5,
"data": {
"iamStatus": true,
"ssmsStatus": true,
"mPowerStatus": true
}
}

Data Representation

Field NameTypeDescription
iamStatusbooleanIf true the user is created successfully in IAM. If false the user is not created.
ssmsStatusbooleanIf true the user is created successfully in SSMS. If false the user is not created.
mPowerStatusbooleanIf true the user is created successfully in SCP-Addressbook. If false the user is not created.

Response Status Information

Status CodeStatusMessage
200SuccessUser status fetched successfully
401UnauthorizedHTTP 401 Unauthorized
404USER_NOT_FOUNDUser does not exist