1

I am currently working Servicenow to Docusign integration where a user raises request from Servicenow and i want to send a template to the requested user. I created my demo docusign instance & template, please help me with the api to trigger an template and send it to the user using integration.

I tried to use below api's to get the template id but i keep reading the documentation but no where i found something to send a template from external system

https://demo.docusign.net/restapi/v2.1/accounts/${account_id}/templates

This gives me the template id

Larry K
  • 47,808
  • 15
  • 87
  • 140
  • WELCOME to StackOverflow! Please check (accept) the best answer to each of your questions. THANK YOU – Larry K Oct 04 '20 at 12:02

1 Answers1

1

Start with the QuickStart in your favorite language. Use workflow 2, Sending a signing request via email.

You'll want to use the JWT grant to obtain an access token for DocuSign since your application will be sending signing requests (envelopes) autonomously.

Ask additional StackOverflow questions when you run into a problem or question.

Larry K
  • 47,808
  • 15
  • 87
  • 140
  • Thank you for the reply. I did configured OAuth and i am able to get the user info and templates which i did with Authorization Code. So for trigger a template via api i have to go with JWT ? – Gousiya Begum Oct 04 '20 at 12:54
  • Can anyone please help with the end point api to be used to send trigger a template and sent to the recipient – Gousiya Begum Oct 05 '20 at 19:29