0

これら 2 つのテンプレートを REST API を介して複合テンプレートとして使用しようとしていました。各テンプレートを個別に送信したところ、正常に機能しました。ログ ファイルからの要求は次のとおりです。

Content-Length: 1526
Host: demo.docusign.net
X-DocuSign-Authentication: {"Username":"Kathleen.Jones@XXX.com","Password":"[omitted]","IntegratorKey":"[omitted]"}
X-Forwarded-For: 63.118.233.100, 104.129.194.117

{
  "compositeTemplates": [
    {
      "serverTemplates": [
        {
          "sequence": "1",
          "templateId": "2d743750-f910-4a30-ad34-ac5bc0ca8daa"
        },
        {
          "sequence": "2",
          "templateId": "63479d79-a776-4767-a2a3-1ebd01d7d8fa "
        }
      ],
      "inlineTemplates": [
        {
          "sequence": "1",
          "recipients": {
            "signers": [
              {
                "name": "Joe Blow",
                "email": "JoeBlow@outlook.com",
                "recipientId": "1",
                "roleName": "CEO"
              },
              {
                "name": "Kathy Blow",
                "email": "KathyBlow@outlook.com",
                "recipientId": "2",
                "roleName": "Uber CEO"
              }
            ]
          }
        },
        {
          "sequence": "2",
          "recipients": {
            "signers": [
              {
                "name": "Joe Blow",
                "email": "JoeBloww@outlook.com",
                "recipientId": "2",
                "roleName": "Uber CEO"
              },
              {
                "name": "Kathy Blow",
                "email": "KathyBlow@outlook.com",
                "recipientId": "1",
                "roleName": "CEO"
              }
            ]
          }
        }
      ]
    }
  ],
  "status": "sent",
  "emailSubject": "Please Sign the enclosed docs at your earliest convenience"
}
400 BadRequest
Content-Type: application/json; charset=utf-8
X-DocuSign-TraceToken: cb23f0ed-6be2-4189-9237-5575671f8f4b

{
  "errorCode": "TAB_REFERS_TO_MISSING_DOCUMENT",
  "message": "The DocumentId specified in the tab element does not refer to a document in this envelope. Tab refers to DocumentId 15100956 which is not present."
}

私が言ったように、私は 2 つのテンプレートをスタンドアロンで使用しましたが、うまくいきました。何か案は?

4

1 に答える 1

1

私はStackOverflowの答えで答えを見つけました:

投稿したリクエスト JSON では、ドキュメント オブジェクトのコレクション/配列として「ドキュメント」(複数形) を指定していますが、これは正しくありません。compositeTemplates 配列内の各 Composite Template アイテムには、最大で 1 つのドキュメントのみを含めることができます。

于 2016-12-19T19:51:10.703 に答える