To download the full code sample see our Code Share site.

A signer may be locked out of their account because of too many failed authentication attempts.

By calling the PackageService() and by setting the package and signer IDs, you can unlock the signer. The following code will do this:

eslClient.getPackageService().unlockSigner(new PackageId("packageId"), "signerId");

To download the full code sample see our Code Share site.

A signer may be locked out of their account because of too many failed authentication attempts.

By calling the PackageService() and by setting the package and signer IDs, you can unlock the signer. The following code will do this:

eslClient.PackageService.UnlockSigner(new PackageId("packageId"), "signerId");

To download the full code sample see our Code Share site.

A signer may be locked out of their account because of too many failed authentication attempts.

The following code will unlock a signer:

HTTP Request

POST /api/packages/{packageId}/roles/{roleId}/unlock

HTTP Headers

Accept: application/json
Content-Type: application/json
Authorization: Basic api_key

To download the full code sample see our Code Share site.

A signer may be locked out of their account because of too many failed authentication attempts.

You can unlock your signer by passing the package and Role ID as parameters. The following code will do this:

public void unlockSigner(String packageId, String roleId)