Java SDK .NET SDK REST API APEX SDK
Java SDK
To download the full code sample see our Code Share site.
If for any reason, a signers did not receive an email notification for signing, you can manually resend the invitation.
The following code will do this:
eslClient.getPackageService().notifySigner(
packageId,
"mail2@example.com",
"HELLO SIGNER"
);You will need to define the packageId object, the email address of the signer, and optionally a custom message to be included in the email.
.NET SDK
To download the full code sample see our Code Share site.
If for any reason, a signers did not receive an email notification for signing, you can manually resend the invitation.
The following code will do this:
eslClient.PackageService.NotifySigner(
packageId,
"mail2@example.com",
"HELLO SIGNER"
);You will need to define the packageId object, the email address of the signer, and optionally a custom message to be included in the email.
REST API
To download the full code sample see our Code Share site.
If for any reason, a signers did not receive an email notification for signing, you can manually resend the invitation.
The following code will do this:
HTTP Request
POST /api/packages/{packageId}/roles/{roleId}/notificationsHTTP Headers
Accept: application/json
Content-Type: application/json
Authorization: Basic api_keyAPEX SDK
To download the full code sample see our Code Share site.
If for any reason, a signers did not receive an email notification for signing, you can manually resend the invitation.
The following code will do this:
public void notifySigner(String packageId, String roleId)You will need to define the packageId object, and the roleID.
Where you will need to pass as parameters the package ID and role ID.