Skip to content

Instantly share code, notes, and snippets.

@codingdawg
codingdawg / CreateEnvelopeWithCondtionalFields.cs
Created March 22, 2017 04:50
Creates an envelope with conditional fields based on Radio Group & text tab
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;
@codingdawg
codingdawg / SoapCreateEnvelopeFromTemplate.java
Created March 8, 2017 09:05
Docusign Soap CreateEnvelopeFromTemplate
//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};