Docusign Transform Pdf Fields For single recipient?

核能气质少年 提交于 2019-11-28 11:40:53

问题


I created an envelope in DocuSign where one of the documents contains transform PDF fields. This envelope is sent to multiple recipients and those transform PDF fields are editable by all of them.

I'm wondering if there's a way to only allow for one recipient to edit transform PDF fields rather than allowing all recipients the ability to edit the transform PDF fields using the DocuSign API.


回答1:


In the "Create Envelope" API request, set the defaultRecipient property to true for the Recipient that you want to 'own' the transformed PDF fields. Here's an example request showing how to set the defaultRecipient property:

POST https://demo.docusign.net/restapi/v2/accounts/ACCOUNT_NUMBER/envelopes HTTP/1.1

X-DocuSign-Authentication: {"Username":"USER_NAME","Password":"PASSWORD","IntegratorKey":"INTEGRATOR_KEY"}
Content-Type: multipart/form-data; boundary=MY_BOUNDARY
Accept: application/json
Host: demo.docusign.net
Content-Length: 59549

--MY_BOUNDARY
Content-Type: application/json
Content-Disposition: form-data

{
    "emailBlurb":"Test Email Body",
    "emailSubject": "Test Email Subject",
    "status" : "sent",
    "compositeTemplates": [
    {
        "inlineTemplates": [
        {
            "sequence" : 1,
            "recipients": {
                "signers" : [{
                    "email": "sallysemail@outlook.com",
                    "name": "Sally Adamson",
                    "recipientId": "1",
                    "defaultRecipient": "true"
                }]
            }
        }],
        "document": {
            "documentId": 1,
            "name": "Customer Agreement",
            "transformPdfFields": "true"
        }
    }]
}

--MY_BOUNDARY
Content-Type: application/pdf
Content-Disposition: file; filename="SampleForm.pdf"; documentid="1"

<document bytes removed>

--MY_BOUNDARY--


来源:https://stackoverflow.com/questions/20053160/docusign-transform-pdf-fields-for-single-recipient

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!