I am attempting to request signature via a template and prefill some data fields using RESTAPI. The only unsuccessful part of my quest is setting the data field value(s). The envelope with document is sent with only the standard tags and their respective values.
Need some insight.
XML Body...
<envelopeDefinition xmlns="http://www.docusign.com/restapi">
<accountId><%= _accountID %></accountId>
<emailSubject>DocuSign API - Request Template</emailSubject>
<status>sent</status>
<emailSubject>API Call for request from template</emailSubject>
<emailBlurb>This comes from me</emailBlurb>
<templateId><%= _templateID %></templateId>
<templateRoles>
<email>me@me.com</email>
<name>Dean</name>
<roleName>Signer</roleName>
<recipientId>1</recipientId>
<tabs>
<textTabs>
<tabLabel>CompanyName</tabLabel>
<value>Dean Inc</value>
</textTabs>
</tabs>
</templateRoles>
</envelopeDefinition>