-
Notifications
You must be signed in to change notification settings - Fork 164
Description
When creating an envelope via EnvelopesApi.CreateEnvelope, supplying a partially filled PDF in a CompositeTemplate, the text fields in the PDF find their match in the DocuSign template and merge but not the Radio Buttons - a selected radio button in the PDF is not selected in the Envelope. I've confirmed the PDF field names match the DS template tab names, and the radio button values align as well. I've also tried changing the radio button field name (in both the template and PDF) to include DocuSignRadio, following the guide here: https://developers.docusign.com/docs/esign-rest-api/esign101/concepts/tabs/pdf-transform/
Code snippit:
var doc = new Document { DocumentId = rn.Next().ToString(), DocumentBase64 = Convert.ToBase64String(sourceFile), FileExtension = sourceFileInfo.Extension.TrimStart('.'), Name = d.DocumentName, IncludeInDownload = true.ToString(), TransformPdfFields = true.ToString() };
I've tried this with version 6.4.2 and 6.5 of the eSign SDK. Not sure if the previous versions behaved differently.
Alternatively, if I upload the same PDF manually via the browser, the Select Matching Templates dialog shows (100% match), I can apply the same template used in my SDK attempt, select Merge Data with template fields, and the Radio Button is pre-selected correctly.