Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • Parameter "backgroundColor": The id of the referenced color
  • Parameter "defaultFor": when used in WebUI or in an API integration where the layout is not explicitely selected by the integration code, the "defaultFor" parameter allows selecting which layout should be used. Values can be separated with semicolon (;).
    • Allowed values: Click2Sign;Draw2Sign;Type2Sign;BiometricSignature;RemoteSignature;LocalCertificateSignature;DisposableCertificate;OtpSignature;AutomaticRemoteSignature;SwissComOnDemandCertificate;PushTan;ATrust;BankId;GenericSigningPlugin"
    • Mind that it may be useful to define different layouts e.g. for BiometricSignature or Type2Sign signatures.

Integration
It is possible to add the layout to a signature field sent via api. Just add the parameter "ly" for layout in the "AllowedSignatureTypes" section. Please see the following sample:

Code Block
languagejava
themeEclipse
"AllowedSignatureTypes": [
                  {
                    "AllowedCapturingMethod": "Click2Sign",
                    "Ly":"default",
                    "Id": "679dd763-1234-1234-1234-cb1ce13dac7e",
                    "DiscriminatorType": "SigTypeClick2Sign",
                    "Preferred": false,
                    "StampImprintConfiguration": {
                      "DisplayExtraInformation": true,
                      "DisplayEmail": true,
                      "DisplayIp": true,
                      "DisplayName": true,
                      "DisplaySignatureDate": true,
                      "FontFamily": "Times New Roman",
                      "FontSize": 11.0
                    }
                  }
                ],


Layer

A layer consists of 1-n rows. The rows of a layer are printed in the order defined in the configuration.

...