-
Notifications
You must be signed in to change notification settings - Fork 14
Migration Guide v4
ATimmeh33 edited this page Sep 26, 2025
·
2 revisions
The following steps need to be performed to update an existing v3.* implementation to v4.*:
The type of the DaysToRemind (located in the Signer object) has been changed to be nullable int (int?). Ensure your code can handle this type change. If you want to make use of your organization's default setting, set DaysToRemind to null instead of 0:
new Signer {
Email = "john.doe@example.com",
SignRequestMessage = "Could you please sign this document?",
SendSignRequest = true,
DaysToRemind = null
}
Or don't set it all:
new Signer {
Email = "john.doe@example.com",
SignRequestMessage = "Could you please sign this document?",
SendSignRequest = true,
}