且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

docusign-使用API​​向文档中添加标签:仅在此处添加signhere标签,而忽略所有其他标签

更新时间:2022-05-03 07:06:02

您需要删除内部选项卡名称中的tabs部分.例如,对于dateSigned选项卡,<xml>节点需要看起来像这样:

You need to drop the tabs part of the inside tab names. For instance, for dateSigned tabs the <xml> nodes need to look like this:

<dateSignedTabs>
    <dateSigned>
    ...
    </dateSigned>
</dateSignedTabs>

与其他标签相同...全名标签需要这样设置:

Same thing with your other tabs... the full name tabs need to be setup like this:

<fullNameTabs>
    <fullName>
    ...
    </fullName>
</fullNameTabs>

给出尝试,它应该可以工作.

Give that a try and it should work.