Nutrient Web SDK
    Preparing search index...

    Interface ServerSigningServiceDataServer

    Server only

    Contains information to be optionally passed along to the signing service when instance.signDocument() is called in server mode, so it can be used for identification, security or any other purpose.

    To learn more about how to set up the signing service check guide article.

    This is the property that can be included in the object:

    Passing a string for the signing service when signing (Server)

    instance.signDocument(null, {
    signingToken: "My security token"
    })
    .then(function () {
    console.log("The document has been signed!");
    });
    interface ServerSigningServiceData {
        signingToken: string;
    }
    Index

    Properties

    Properties

    signingToken: string

    Token to be passed by the backend to the signing service.