简体   繁体   English

如何发送多个文档以签名DocuSign for Salesforce

[英]How to send multiple documents for signature DocuSign for Salesforce

Please can someone assist me. 请有人可以帮我。 I am new to DocuSign. 我是DocuSign的新手。 I have a project I am working on whereby the customer wants to be able to send multiple documents to a recipient for signature. 我有一个正在处理的项目,客户希望该项目能够将多个文档发送给收件人进行签名。 From the standard DocuSign set up, you can add documents upon envelope creation but I am looking for a way to automate this. 通过标准的DocuSign设置,您可以在创建信封时添加文档,但是我正在寻找一种自动化的方法。 For instance I created a custom button that automatically sends the envelope to a recepient. 例如,我创建了一个自定义按钮,该按钮会自动将信封发送给收件人。 But it seems I can only add one document template there. 但是似乎我只能在其中添加一个文档模板。 Could someone please advise me on what to actually do or where to look because I cant seem to find anything. 有人可以建议我实际做什么或在哪里看,因为我似乎什么也找不到。 I see some recipies on the DocuSign help but they are in python etc and I want instruction on Salesforce. 我在DocuSign帮助上看到一些提示,但是它们在python等中,并且我需要有关Salesforce的说明。

POST
https://demo.docusign.net/restapi/v2/accounts/[accountId]/envelopes

In your create envelope body, you can specify multiple documents like: 在创建信封正文中,您可以指定多个文档,例如:

emailSubject: "subject", recipients: { signers: [{ recipientId: 1, email: "signer@email.com", name: "Signers name" }]}, documents: [{ documentId: 1, filePath: 'your/path/here/1', }, { documentId: 2, filePath: 'your/path/here/2', }],

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM