I want the ZAP to locate a specific Docusign template (by name)
I want the ZAP to USE the Template (create an Envelope that uses the Template)
I want the ZAP to pass data from Quickbooks Online to the fields on the Docusign Template
I want the ZAP to either simulate Docusign “Finish Later” button, or “Send” button
I think the Quickbooks Online and Docusign APIs will support this, but I don’t see an existing solution.
Any ideas how I can get this solution?
My test ZAP will send the Envelope to the correct destination, but it won’t populate the data fields on the Template. Also, I don’t see a way to “Finish Later”.
Best answer by robschmidtBest answer by robschmidt
Hi @TPECorp,
As of now, DocuSign hasn’t made the integration available for Zapier to create an envelope from a template.
However, I see that DocuSign offers an API endpoint to create an envelope using custom field data. To make this into Zapier, you can leverage Zapier Webhook to make an API request to DocuSign and get the envelope created.
Here are the API processes for your desired automation:
Make an API request to Template Update endpoint with your custom field data: API Reference
Make an API request to Create an Envelope with status “draft” endpoint: API Reference
Make an API request to Envelope Template - Apply, and apply the template created in step 1: API Reference
However, I see that DocuSign offers an API endpoint to create an envelope using custom field data. To make this into Zapier, you can leverage Zapier Webhook to make an API request to DocuSign and get the envelope created.
Here are the API processes for your desired automation:
Make an API request to Template Update endpoint with your custom field data: API Reference
Make an API request to Create an Envelope with status “draft” endpoint: API Reference
Make an API request to Envelope Template - Apply, and apply the template created in step 1: API Reference
The existing integration does allow me to select a Template by ID, USE that Template, and map data from my source into the custom form fields on the Template.
My problem is that the recipient doesn't see the values that I populated.