我正在使用DocuSign Rest API v2,並且在將複合模板發佈到信封端點時未收到事件通知。以下是我的json請求的樣子:未收到來自DocuSign API的事件通知
{
'accountId': '[ommitted]',
'status': 'sent',
'emailSubject': 'XYZ Corp_MSA_Singapore-OU_0.1_2014099.pdf',
'compositeTemplates': [
{
'InlineTemplates': [
{
'Sequence': '1',
'Recipients':
{
'Signers': [
{
'Email': '[email protected]',
'Name': 'Jeff Dunham',
'RecipientID': '1',
'defaultRecipient': 'true',
'ClientUserID': '1'
}
]
}
}
],
'Document': {
'Name': 'XYZ Corp_MSA_Singapore-OU_0.1_2014099.pdf',
'DocumentId': '1',
'transformPdfFields': 'true',
'fileExtension': '.pdf'
}
}
],
'EventNotification': {
'EnvelopeEvents': [
{ 'envelopeEventStatusCode': 'sent' },
{ 'envelopeEventStatusCode': 'completed' },
{ 'envelopeEventStatusCode': 'delivered' },
{ 'envelopeEventStatusCode': 'declined' },
{ 'envelopeEventStatusCode': 'voided' }
],
'includeDocuments': 'true',
'requireAcknowledgement': 'true',
'loggingEnabled': 'true',
'url': 'http://netsureportalv2public.visusdev.com/DocusignEventListener.svc/EnvelopeEvent'
}
}
api成功創建信封和一切。我只是沒有收到事件通知。任何幫助將不勝感激。
編輯:忘記包含賬戶Id
謝謝你的迴應! DocuSign連接功能對我的帳戶始終處於活動狀態,但是當我導航到日誌頁面時,我沒有任何發送的信封日誌。 – 2014-09-11 16:40:11
在DocuSign中,您是否創建了「自定義連接配置」?如果是這樣,您應該導航到該配置的設置頁面(首選項>>連接>> [configurationName_link]),並確保在那裏選中「啓用日誌」複選框。 – 2014-09-11 17:17:46
當我創建自定義配置時,是否必須有一個「Url to Publish」?我希望事件通知根據應用在哪個環境上運行(例如,Dev,Test,UAT) – 2014-09-11 18:17:03