0
這應該很簡單。我有一個帶有1個服務器模板的複合模板和1個帶有一個簽名者的內聯模板。這是該請求是什麼樣子:Docusign錯誤TAB_REFERS_TO_MISSING_DOCUMENT
{
"compositeTemplates": [
{
"serverTemplates": [
{
"sequence": "1",
"templateId": "c6dc72a6-51ae-47c3-a55a-7923a247f97c "
}
],
"inlineTemplates": [
{
"sequence": "2",
"recipients": {
"signers": [
{
"name": "Kathy Keaton",
"email": "[email protected]",
"recipientId": "1",
"routingOrder": "1",
"roleName": "##Buyer1"
}
]
}
}
],
"document": {
"documentId": "1",
"name": "Doc1ForBigTest.docx",
"fileExtension": "docx",
"documentBase64": [bytearray]
}
}
],
"status": "sent",
"emailSubject": "Please sign the following document at 10:21 AM"
}
我想用我的這個特殊的文件,而不是一個模板的副本,但我得到上面提到的TAB錯誤。我究竟做錯了什麼?謝謝你的幫助。
你的文件是否包含表單域? –
我想我明白了。我不得不打電話到ListDocuments獲取服務器模板上的信息,並從中獲取文檔ID並使用它。我希望有一些其他的方式來做到這一點。 –