Docusign Anchor tab

随声附和 提交于 2019-12-31 05:14:32

问题


I am trying to send a document for signing via the DocuSign REST API. I'm using Sign Here tabs with an Anchor text string.

The JSON Object request:

 "emailSubject" : "This is email subject",
  "emailBlurb" : "This is email body",
  "recipients" : {
    "signers" : [ {
      "routingOrder" : "1",
      "name" : "Recipeient Name",
      "email" : "Recipeient Email Address",
      "recipientId" : "1",
      "tabs" : {
        "signHereTabs" : [ {
          "anchorString" : "By:",
          "anchorXOffset" : "1",
          "anchorYOffset" : "1",
          "anchorIgnoreIfNotPresent" : "true",
          "anchorUnits" : "inches"
        } ]
      }
    } ]
  },
  "documents" : [ {
    "name" : "document.pdf",
    "documentId" : "1",
    "bytes" : "Byte Representaton of document"
  } ],
  "status" : "sent"
}

This is working perfectly fine with a minor glitch: The document has two matching strings "By:", and the Sign Here tab is placed on both of them.

Is there a way I can restrict this to only add the Sign Here tab to the first instance of the string "By:" in the document?


回答1:


Unfortunately, no. The anchor strings on your document must be unique, otherwise that tag will be placed anywhere that string is found. See the Rules for working with anchors section here.



来源:https://stackoverflow.com/questions/32054848/docusign-anchor-tab

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!