This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
using DocuSign.eSign.Client; | |
using DocuSign.eSign.Model; | |
using DocuSign.eSign.Api; | |
using System.IO; | |
using Newtonsoft.Json; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Step #1) Buiding Template, Recipient and Envelope information | |
// 1.1) Put the created template from DocuSign | |
DocuSignAPI.TemplateReference templetRef = new DocuSignAPI.TemplateReference(); | |
templetRef.Template = aa3d9632-1595-4fef-87dd-1795334edf9d; | |
templetRef.TemplateLocation = 'Server'; | |
DocuSignAPI.ArrayOfTemplateReference templetRefs = new DocuSignAPI.ArrayOfTemplateReference(); | |
templetRefs.TemplateReference = new DocuSignAPI.TemplateReference[]{templetRef}; | |
NewerOlder