kmillard

Blue circle/swirl signature watermark

0 votes
What is the blue swirl watermark (image attached), next to the signature, on a signed document? Is there a way I can remove this or replace it with my own image? Thanks, -K

Attachments
blueSwirl.png659 bytes
Approved Answer

Reply to: Blue circle/swirl signature watermark

2 votes
Hello, The watermark is our company logo. You do not have the ability to remove it from your account settings. However, you can submit a request to [email protected] to have it removed. Unfortunately, this is not something that can be branded on our end. You have can either keep it as is or remove it. Thank you , Arthur

Reply to: Blue circle/swirl signature watermark

0 votes
Thank you -K

Reply to: Blue circle/swirl signature watermark

0 votes
If you are using the SDK, you can remove the watermark for that package using the withoutWatermark() method as shown in the following Java code (.NET code is similar):
DocumentPackage documentPackage = newPackageNamed(
				"eSignature Package")

				// Customize your e-signature process
				// For more information, See
				// http://docs.e-signlive.com/doku.php?id=esl:e-signlive_guide_customizing-the-signing-ceremony
				.withSettings(
						DocumentPackageSettingsBuilder
								.newDocumentPackageSettings()
								.withoutWatermark()
								);
Using the API, you can add the following to your package JSON:
{
 	"settings": {
		"ceremony": {
			"hideWatermark": true
		}
	}
}

Hello! Looks like you're enjoying the discussion, but haven't signed up for an account.

When you create an account, we remember exactly what you've read, so you always come right back where you left off