Skip to content

Migration Guide v4

ATimmeh33 edited this page Sep 26, 2025 · 2 revisions

Migration Guide v4

The following steps need to be performed to update an existing v3.* implementation to v4.*:

Handle nullability DaysToRemind property

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,
}

Clone this wiki locally