Reputation: 685
I have a use case where there a doc needs to get send from DS and via an API call and we are seeing some weirdness in DS around tagging. In all our templates, the tags for name and title get populated with the same text throughout the document. For example, if I write ‘Obama’ in one of the boxes next to “Name”, every single box in the document for name, title, and even company, gets populated with ‘Obama’. Any ideas?
The DS documents are getting created via the API, and the tags are created like this:
envelope.Tabs = new DocuSignAPI.ArrayOfTab();
envelope.Tabs.Tab = new List<DocuSignAPI.Tab>();
DocuSignAPI.Tab t = new DocuSignAPI.Tab();
t.Type_x = 'Custom';
DocuSignAPI.AnchorTab at = new DocuSignAPI.AnchorTab();
at.AnchorTabString = '\\n1\\';
t.RecipientID = recipient.ID;
t.CustomTabRequired = false;
at.IgnoreIfNotPresent = true;
t.AnchorTabItem = at;
envelope.Tabs.Tab.add(t);
Upvotes: 0
Views: 49
Reputation: 6818
You would have set same dataLabel
for all your DS Tags. If you have same datalabel for multiple DS Tags then DocuSign will replicate the same value for all DS Tags.
Upvotes: 2