IsArcotIDAvailable()
This API checks whether the AuthID for the specified user is present.
aa91
This API checks whether the AuthID for the specified user is present.
Syntax
isArcotIDAvailable(userName,orgname);
Parameters
Parameter
| Type
| Description
|
userName | string | User name and the alias, which are the unique user identifier associated with the Arcot card. Note: The alias is obtained from the user and stored in the AuthID as an attribute with the specified application context. |
orgName | string | The name of the Strong Authentication organization to which the user belongs. |
Returns
On success, returns TRUE. On failure, returns FALSE.
Example
var arcotClient = new ArcotClient();var orgName = "safebank";var userName = "jdoe-sb";var response = arcotClient.isArcotIDAvailable(userName, orgName);