Versions Compared

Key

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

...

The result of the API call is the FileId which will be needed for the sending call.

Configuration

Info

Please note that with api v6 the general policies are set as default:

Code Block
languagejava
themeEclipse
   {
                    AllowAdhocFreeHandAnnotations = false,
                    AllowAdhocPdfAttachments = false,
                    AllowAdhocPdfPageAppending = false,
                    AllowAdhocPictureAnnotations = false,
                    AllowAdhocSignatures = false,
                    AllowAdhocStampings = false,
                    AllowAdhocTypewriterAnnotations = false,
                    AllowEmailDocument = true,
                    AllowPrintDocument = true,
                    AllowRejectWorkstep = true,
                    AllowSaveAuditTrail = true,
                    AllowSaveDocument = true,
                    AllowUndoLastAction = false,
                    AllowRotatingPages = false,
                    AllowAppendFileToWorkstep = false,
                    AllowAppendTasksToWorkstep = false,
                    AllowColorizePdfForms = false,
                    AllowReloadOfFinishedWorkstep = true,
                    AllowDownloadOfSignedP7MFiles = true
                };
            }

Via UI it is possible to change the following policies (settings can be found in organization settings → Policy for the document viewer for recipients):

Code Block
languagexml
themeEclipse
<GeneralPolicies>
  <AllowSaveDocument>1</AllowSaveDocument>
  <AllowSaveAuditTrail>1</AllowSaveAuditTrail>
  <AllowUndoLastAction>1</AllowUndoLastAction>
  <AllowAdhocPdfAttachments>0</AllowAdhocPdfAttachments>
</GeneralPolicies>



The configuration is the core of the envelope. Within the configuration you can define following settings:

...