You need to sign in to do that
Don't have an account?
Auto Add Document to DocuSign Salesforce Using Custom Button
I posted this on Stack Overflow also: http://stackoverflow.com/questions/34804072/auto-add-document-to-docusign-salesforce-using-custom-button
I'm using a DocuSign custom button. I have the document Id of the document I want added into docusign, on my object. Is there a way to automatically add the document using that Id?
The use case is, I'd like my user to hit the send via docusign button, and already have the document and the docusign envelop configured. Currently they have to search for the document, because it's not related to the source record and not in notes and attachments.
I'm using a DocuSign custom button. I have the document Id of the document I want added into docusign, on my object. Is there a way to automatically add the document using that Id?
The use case is, I'd like my user to hit the send via docusign button, and already have the document and the docusign envelop configured. Currently they have to search for the document, because it's not related to the source record and not in notes and attachments.
You can do this, by creating a custom button and then in the code for the button add the template ID as the DST parameter
So it will be like this: DST='Template ID' (e.g. DST = '45B27CE5-C39C-46B7-9969-2A98FF9DE88D').
If you want multiple IDs, just separate them with comma. 'Temlate1,Template2,template3'
What I'm trying to do is dynamically add a salesforce document, from the document object, not load a DocuSign template document. It's a quote document that has been generated dynamically. The quote document object has the ID of the document. I'd like to use that ID to automatically add that dynamic document to the standard DocuSign process in salesforce.
thanks
Thanks