User Exists
A REST call to determine whether a user exists with respect to RapidIdentity MFA Server. A successful response returns the userID.
POST /restservices/restservice.svc/UserExists
REQUEST:
curl
--request POST
--url https://<MFAServerHostname>/restservices/restservice.svc/UserExists
--data '{
"userName":<string>,
"domainName":<string>,
"apiKey":<string>
}'
REQUEST BODY:
{
"userName":<string>,
"domainName":<string>,
"apiKey":<string>
}
RESPONSE 200 OK:
{
"status": "success",
"Result": "159"
}