2017-08-09 194 views

回答

2

您将需要一个公式标签与公式AddDays([DateSigned],3)

下面是一个示例createEnvelope请求。

POST /v2/accounts/{accountId}/envelopes 

{ 
    "emailSubject": "Please sign the agreement with two Date Tabs", 
    "status": "sent", 
    "recipients": { 
     "signers": [ 
      { 
       "name": "Jane Doe", 
       "email": "[email protected]", 
       "recipientId": "1", 
       "tabs": { 
        "dateSignedTabs": [ 
         { 
          "tabLabel": "ImportantDate", 
          "documentId": "1", 
          "pageNumber": "1", 
          "xPosition": "100", 
          "yPosition": "150" 
         } 
        ], 
        "formulaTabs": [ 
         { 
          "formula": "AddDays([ImportantDate],3)", 
          "width": "100", 
          "documentId": "1", 
          "pageNumber": "1", 
          "xPosition": "300", 
          "yPosition": "150" 
         } 
        ] 
       } 
      } 
     ] 
    }, 
    "documents": [ 
     { 
      "documentId": "1", 
      "name": "Contract", 
      "fileExtension": "txt", 
      "documentBase64": "VGVzdCBEb2N1bWVudA==" 
     } 
    ] 
} 
+0

我们正在通过Conga Composer完成此项任务,不向DocuSign直接调用API。 [Conga - DocuSign](https://support.getconga.com/Conga_Composer/Customizing_Composer_with_Parameters/Composer_Parameter_Guide/DocuSign_Integration_Parameters) –

0

Docusign确认这不可能通过锚标签(自定义标签)。