New Mar 31, 2026

How to create and implement templates that allow for information to be automatically filled in on envelope creation using Docusign API

Libraries, Frameworks, etc. All from Newest questions tagged vue.js - Stack Overflow View How to create and implement templates that allow for information to be automatically filled in on envelope creation using Docusign API on stackoverflow.com

Problem

I’m using the DocuSign eSignature API with composite templates and can’t get prefill (sender-filled) text tabs to populate when creating an envelope.


What I’m Doing

At send time:

Example:

signer.Tabs = new Tabs
{
    TextTabs = new List<Text>
    {
        new Text
        {
            TabLabel = "LegalCompanyName",
            Value = "Test Customer LLC"
        }
    }
};

Issue

The tab exists in the document, but the value is not populated when the envelope is created.


What I’ve Tried

None of these resulted in the value being applied.


Question

What is the correct way to populate prefill text tabs when using composite templates?


Expected Result

The document should be pre-filled (e.g. LegalCompanyName = "Test Customer LLC") before the recipient views it.


Any guidance would be appreciated.

Scroll to top