可能要求签名者至少提供一份附件吗?

Possible to require at least one attachment from the signer?

我需要用户在签署文档时上传他们公司的徽标。有没有办法让它成为必需的,这样用户将无法完成签名,除非他们已经上传了一个文件。

如果代码引用可以使用xml,我将不胜感激!

是的,我相信 属性 称为 optional,您可能希望将其设置为 false。您的选项卡定义(在 XML 中)应如下所示:

<signerAttachmentTabs>
    <signerAttachment>
        <tabLabel>TabName</tabLabel>
        <documentId>2</documentId>
        <pageNumber>1</pageNumber>
        <recipientId>1234</recipientId>
        <xPosition>300</xPosition>
        <yPosition>250</yPosition>
        <scaleValue>3.1</scaleValue>
        ...         
        <optional>false</optional>
        ...
    </signerAttachment>
</signerAttachmentTabs>