Example
Getting digital signatures data from a document
instance.getSignaturesInfo()
.then(function (signaturesInfo) {
console.log(signaturesInfo)
});
See Also
Properties
documentModifiedSinceSignature
Optional
boolean
The document has been modified since the last signature was added to it.
"valid" | "warning" | "error" | "not_signed"
The different possible validation states of the document.
Describes and persists the overall validation status of the document, based on the digital signatures it contains.
The information contained in the digital signatures included in a document can be extracted using NutrientViewer.Instance#getSignaturesInfo, which resolves with a
NutrientViewer.SignaturesInfoobject. This object represent the overall validation status of the document. For getting information about each individual signature from the document, an array of SignatureInfo is included under thesignaturesproperty.To learn more about digital signatures validation check this guide article.