我在從複合模板創建個人簽名會話時遇到問題。InPerson簽名不是自動填寫簽名者電子郵件
我遵循相同的程序來識別親自簽署人,就像在其他直接嵌入文檔的API調用中一樣,但在此情況下,當人簽署人完成簽名過程並被要求發送電子郵件以發送已完成文件,它不是用我的API提供的signerEmail對象自動填充的。
JSON如下:
{
"status": "sent",
"compositeTemplates": [{
"serverTemplates": [{
"sequence": "1",
"templateId": "a6c1a9b2-xxxx-xxxx-xxxx-3f8efef01946"
}
],
"inlineTemplates": [{
"sequence": "1",
"recipients": {
"inPersonSigners": [{
"name": "Lilly Test",
"email": "[email protected]",
"hostEmail": "[email protected]",
"hostName": "Lilly Test",
"signerName": "Yakue Holguín",
"signerEmail": "[email protected]",
"roleName": "Signer 1",
"recipientId": "1",
"clientUserId": "1000",
"routingOrder": "1",
"emailNotification": {
"emailSubject": "Contract for live in person signature attached. Host: Lilly Test",
"emailBody": "Contract for live in person signature attached. Host: Lilly Test",
"supportedLanguage": "fr"
},
"requireIdLookUp": "true",
"idCheckConfigurationName": "SMS Auth $",
"smsAuthentication": {
"senderProvidedNumbers": ["+376342078", "+33672793567", "+34696463366"]
}
}
],
"signers": [{
"name": "John Test",
"email": "[email protected]",
"emailNotification": {
"emailSubject": "Contract for live in person signature attached. Host: Lilly Test",
"emailBody": "Contract for live in person signature attached. Host: Lilly Test",
"supportedLanguage": "en"
},
"roleName": "Signer 2",
"routingOrder": "2",
"recipientId": "2"
}, {
"name": "Mary Test",
"email": "[email protected]",
"emailNotification": {
"emailSubject": "Contract for live in person signature attached. Host: Lilly Test",
"emailBody": "Contract for live in person signature attached. Host: Lilly Test",
"supportedLanguage": "en"
},
"roleName": "Signer 3",
"routingOrder": "2",
"recipientId": "3"
}
]
},
"customFields": {
"textCustomFields": [{
"value": "8009E000000JQl2QAG",
"required": "false",
"show": "false",
"name": "##SFContract"
}
]
},
}
]
}
],
"eventNotification": {
"RecipientEvents": [{
"recipientEventStatusCode": "Completed"
}, {
"recipientEventStatusCode": "sent"
}, {
"recipientEventStatusCode": "delivered"
}, {
"recipientEventStatusCode": "declined"
}
],
"EnvelopeEvents": [{
"envelopeEventStatusCode": "Delivered"
}, {
"envelopeEventStatusCode": "completed"
}, {
"envelopeEventStatusCode": "sent"
}, {
"envelopeEventStatusCode": "Declined"
}
]
}
}
使用合成模板還是我失去了關於最後的「發送完成文檔」或「打印」自動填充東西時,是在不同的funcionality?
謝謝!
要添加到意外的行爲,並不是所有的通知郵件被髮送。 – lvelasco