Pular para o conteúdo principal

Generated documents

Besides the application, the files Signer generates can also be customized: the printer friendly version, the validation stamp and the signature visual representation.

Every setting on this page is per organization: each organization administrator configures their own, with no need for the deployment team. Through the API, all of them live in:

GET /api/organizations/{orgId}/settings
PUT /api/organizations/{orgId}/settings

Printer friendly version

The printer friendly version (PrinterFriendly) is the PDF with the signatures manifest, downloaded with type=PrinterFriendlyVersion. You can replace the logo and adjust its position and the position of the signatures summary:

SettingWhat it does
LogoLogo shown in the document. Without it, the instance stamp-logo is used
ShowLogoShows or hides the logo
LogoWidthCentimeters / LogoHeightCentimetersLogo dimensions, in centimeters
LogoMarginRightCentimeters / LogoMarginBottomCentimetersLogo margins, in centimeters
ShowSummaryRightPlaces the signatures summary on the right
SummaryHeightCentimetersSummary height, in centimeters
SummaryLeadingCentimeters / SummaryTrailingCentimetersSpacing before and after the summary
SummaryMarginToPageCentimetersSummary margin relative to the page
{
"printerFriendly": {
"showLogo": true,
"logoWidthCentimeters": 3.5,
"logoHeightCentimeters": 1.2,
"logoMarginRightCentimeters": 1,
"logoMarginBottomCentimeters": 0.5,
"showSummaryRight": false
}
}

Validation stamp

The validation stamp (ValidationStamp) uses exactly the same settings as the printer friendly version (logo, dimensions and margins), applied to the stamp placed on the document. Without its own logo, the instance val-stamp-logo is used.

{
"validationStamp": {
"showLogo": true,
"logoWidthCentimeters": 2,
"logoHeightCentimeters": 2
}
}

Signature visual representation

The image shown in the signature visual representation inside the PDF (SignatureImage):

SettingWhat it does
VisualRepresentationEnabledEnables the visual representation on the organization signatures
ImageImage used in the visual representation
AlignTextOnMiddleVertically aligns the text to the middle of the representation
{
"signatureImage": {
"visualRepresentationEnabled": true,
"alignTextOnMiddle": true
}
}
note

The logos and images on this page are sent as an upload and referenced in the logo (or image) field of the corresponding section. See the upload step in Getting Started.

See also