docusignapi - Dynamically adding Signature Tags to a Docusign Template through API -


i using template signature requests using code docusign reference java walkthrough.

is possible dynamically add signature tags on template through api? modified java code given in walkthrough (my modifications demarcated below) not seem add signature tag on template:

    "<templateid>" + templateid + "</templateid>" +        "<templateroles>" +             "<templaterole>" +                "<name>" + recipientname + "</name>" +                "<email>" + recipientemail + "</email>" +                "<rolename>" + rolename + "</rolename>" +                ====== code modifications ======                "<tabs>" +                   "<signheretabs>" +                      "<xposition>100</xposition>" +                      "<yposition>200</yposition>" +                      "<documentid>1</documentid>" +                      "<pagenumber>1</pagenumber>" +                   "</signheretabs>" +                "</tabs>" +               =====================================            "</templaterole>" +      "</templateroles>" +     "</envelopedefinition>"; 

i expecting signature tag @ specified position on template not working. xml added incorrect?

since can have multiple signature tabs need further specify wrapping signhere xml tag around each. right have:

"<signheretabs>" +     "<xposition>100</xposition>" +     "<yposition>200</yposition>" +     "<documentid>1</documentid>" +     "<pagenumber>1</pagenumber>" + "</signheretabs>"  

try using instead:

"<signheretabs>" +     "<signhere>" +         "<xposition>100</xposition>" +         "<yposition>200</yposition>" +         "<documentid>1</documentid>" +         "<pagenumber>1</pagenumber>" +     "</signhere>" + "</signheretabs>"  

notice set of <signhere></signhere> xml tags wrap actual tag.


Comments

Popular posts from this blog

android - MPAndroidChart - How to add Annotations or images to the chart -

javascript - Add class to another page attribute using URL id - Jquery -

firefox - Where is 'webgl.osmesalib' parameter? -