0
我們使用Conga Composer通過在API調用中添加DocuSign自定義標籤作爲集成參數來生成文檔並將其發送給客戶(背景模式)。我們希望動態添加3天到簽名值的日期,但公式標記在自定義標記Documentation中不受支持。任何想法如何實現?Docusign自定義標籤 - 配方標籤
我們使用Conga Composer通過在API調用中添加DocuSign自定義標籤作爲集成參數來生成文檔並將其發送給客戶(背景模式)。我們希望動態添加3天到簽名值的日期,但公式標記在自定義標記Documentation中不受支持。任何想法如何實現?Docusign自定義標籤 - 配方標籤
您將需要一個公式標籤與公式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=="
}
]
}
Docusign確認這不可能通過錨標籤(自定義標籤)。
我們正在通過Conga Composer完成此項任務,不向DocuSign直接調用API。 [Conga - DocuSign](https://support.getconga.com/Conga_Composer/Customizing_Composer_with_Parameters/Composer_Parameter_Guide/DocuSign_Integration_Parameters) –