- 16 Oct 2024
- 1 Minute to read
- DarkLight
- PDF
Resending a Signing Invitation
- Updated on 16 Oct 2024
- 1 Minute to read
- DarkLight
- PDF
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.