【问题标题】:DocuSign API explorer - does not recognize tabs for SignatureDocuSign API 资源管理器 - 无法识别签名选项卡
【发布时间】:2021-02-17 10:54:38
【问题描述】:

我正在使用 DocuSign API 资源管理器来测试使用选项卡进行签名。我创建了一个带有占位符的 Word 文档,名为 /InternSignatureAnchor/ enter image description here

JSON 请求负载如下所示:

{
  "documents": [
    {
      "documentBase64": "<Base64BytesHere>",
      "documentId": "123456",
      "fileExtension": "DOCX",
      "name": "Freelance Contract"
    }
  ],
  "emailSubject": "Please Sign Contracts 3",
  "recipients": {
    "signers": [
      {
        "email": "dummy_email123@mmmm.mmm",
        "name": "Dummy Recipient 1",
        "recipientId": "1",
        "roleName": "Internal Signatory",
        "routingOrder": "1",
        "tabs": {
          "signHereTabs": [
            {
              "documentId": "123456",
              "pageNumber": "1",
              "tabLabel": "/InternSignatureAnchor/",
              "xPosition": "0",
              "yPosition": "36"
            }
          ]
        }
      },
      {
        "email": "dummy_email321@mmmmm.mmm",
        "name": "Dummy recipient 2",
        "recipientId": "2",
        "roleName": "External Signatory",
        "routingOrder": "2"
      }
    ]
  },
  "status": "sent"
}

当签字人打开要签字的文件时,“签字”enter image description here

未放置在占位符 /InternSignatureAnchor/ 处。当我使用 DocuSign 本身的 Autoplace 功能时,它确实有效。

谁有想法?

提前致谢。

【问题讨论】:

  • 欢迎来到 StackOverflow!请检查(接受)您每个问题的最佳答案。谢谢!!

标签: api docusignapi explorer


【解决方案1】:

“tagLabel”只会给标签添加标签。要使用自动标记,您需要使用如下 json:

"tabs": {
    "signHereTabs": [{
        "anchorString": "Please Sign Here",
        "anchorXOffset": "1",
        "anchorYOffset": "0",
        "anchorIgnoreIfNotPresent": "false",
        "anchorUnits": "inches"
    }]
}

我相信 API 资源管理器目前不显示自动标记字段 - 因此您可能需要使用 Postman 来使用此功能。

【讨论】:

  • 啊,非常感谢 - 我将使用邮递员进行测试。
猜你喜欢
  • 2019-05-12
  • 2021-11-21
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
相关资源
最近更新 更多