Trying...
Trying...

Reputation: 137

Possible to require at least one attachment from the signer?

I need users to upload their company logo when they're signing the document. Is there a way to make this required so the user won't be able to complete signing unless they've uploaded one file.

If code references can use xml, I'll appreciate it!

Upvotes: 0

Views: 70

Answers (1)

Ergin
Ergin

Reputation: 9356

Yes I believe the property is called optional and you would want to set it to false. Your tab definition (in XML) should look something like this:

<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>

Upvotes: 2

Related Questions