Resending a Signing Invitation
  • 16 Oct 2024
  • 1 Minute to read
  • Dark
    Light
  • PDF

Resending a Signing Invitation

  • Dark
    Light
  • PDF

Article summary

Java SDK.NET SDKREST APIAPEX 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}/notifications

HTTP Headers

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

APEX 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.


Was this article helpful?

Changing your password will log you out immediately. Use the new password to log back in.
First name must have atleast 2 characters. Numbers and special characters are not allowed.
Last name must have atleast 1 characters. Numbers and special characters are not allowed.
Enter a valid email
Enter a valid password
Your profile has been successfully updated.
ESC

Ozzy, our interactive help assistant