We are using the DocuSign API to update the text tab values of a draft envelope that was created from a template so that once the envelope status is updated to 'sent' and the envelope is sent off to the first signer, the signer sees the values that were added to the text tabs (the values will be locked). When we test this out and the envelope is sent to the signer, the text tabs are initially empty and only once they click "Finish" and the envelope is sent to the other signers does the values that were used show as expected to the other signers.
Ideally, we'd like this first signer to be able to view the populated values to make sure they are correct before it gets sent to the next signer. Below is the request body we are sending to /envelopes/{ENVELOPE_ID}/recipients/{RECIPIENT_ID}/tabs
to update the values.
Any ideas why the text tabs values start off as blank? When we do the same thing for auto-placed tabs on an uploaded document (so not a template), everything works fine.
{
"textTabs":[
{
"tabId":"b49d9173-2389-48e3-9bb4-ac8e50074d30",
"tabLabel":"contractorestimatedenddate",
"value":"01/31/2021",
"bold":"true",
"locked":"true"
},
{
"tabId":"c86b92dc-92c3-430f-b4c7-97bb68906c70",
"tabLabel":"contractorpop",
"value":"John Doe",
"bold":"true",
"locked":"true"
}
]
}
question from:
https://stackoverflow.com/questions/65928033/docusign-envelope-draft-tab-values-not-showing-up-initially-after-populating-dat 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…