如何在多个文档上应用相同的EnvelopeTab

时间:2018-07-18 05:44:50

标签: docusignapi

我想为签名者创建一个EnvelopeTab,当涉及到选项卡的DocumentId时,我一次只能指定1个ID。如果我尝试指定多个documentId,例如"documentId": "1,2",然后会出现一个错误,指出无法识别“ 1,2”。

如果我想将此同一标签应用于多个文档,该怎么办?如何实现?

谢谢。

1 个答案:

答案 0 :(得分:0)

标记标签位置的最佳方法是使用“ AutoPlace”来查找Anchor Text。通过API创建自动放置标签时,由于在信封文档的所有中搜索了锚文本,因此将创建一个或多个标签。

Node.JS中的示例:

// Create signHere fields (also known as tabs) on the documents,
// We're using anchor (autoPlace) positioning
//
// The DocuSign platform searches throughout your envelope's
// documents for matching anchor strings. So the
// signHere2 tab will be used in both document 2 and 3 since they
// use the same anchor string for their "signer 1" tabs.
let signHere1 = docusign.SignHere.constructFromObject({
    anchorString: '**signature_1**',
    anchorYOffset: '10', anchorUnits: 'pixels',
    anchorXOffset: '20'})
, signHere2 = docusign.SignHere.constructFromObject({
    anchorString: '/sn1/',
    anchorYOffset: '10', anchorUnits: 'pixels',
    anchorXOffset: '20'})
;