DocuSign Connect API -- I need to prepopulate a required custom text field that will be editable by signer
Date : March 29 2020, 07:55 AM
Does that help Posting an answer for the benefit of the community- when using the DocuSign SOAP API there is an XML property that you need set for certain properties. In this case to set CustomTabLocked to true you also need to set CustomTabLockedSpecified property to true.
|
How to wrap text for a data field tag in Docusign
Date : March 29 2020, 07:55 AM
|
DocuSign API C# How to set the value of a text field when sending out a template as an envelope?
Date : March 29 2020, 07:55 AM
wish help you to fix your issue You are missing the tabs xml node and you also need an extra node for each text tab. Right now you have this: "<textTabs>" +
"<tabLabel>street</tabLabel>" +
"<value>" + streetAddress + "</value>" +
"<documentId>1</documentId>" +
"<pageNumber>1</pageNumber>" +
"</textTabs>" +
"<tabs>"
"<textTabs>" +
"<text>" +
"<tabLabel>street</tabLabel>" +
"<value>" + streetAddress + "</value>" +
"<documentId>1</documentId>" +
"<pageNumber>1</pageNumber>" +
"</text>" +
"</textTabs>" +
"</tabs>"
|
DocuSign Transform PDF field to initialHereTab
Date : March 29 2020, 07:55 AM
|
PHP DocuSign API - Create a non-required field
Date : March 29 2020, 07:55 AM
I hope this helps . I believe you just need to set the optional property of the text tab to true. $text->setOptional("true");
|