我已在DocuSign中啓用提醒和過期。但是,當文檔發送給用戶時,似乎不起作用。DSocuSign提醒和註釋
我在C#上使用SOAP API。
DocuSignAPI.Notification ntf = new DocuSignAPI.Notification();
DocuSignAPI.Reminders rem = new DocuSignAPI.Reminders();
rem.ReminderEnabled = true;
rem.ReminderEnabled = true;
rem.ReminderDelay = 5;
rem.ReminderFrequency = 3;
DocuSignAPI.Expirations exp = new DocuSignAPI.Expirations();
exp.ExpireEnabled = true;
exp.ExpireAfter = 90;
exp.ExpireWarn = 3;
您是否考慮過使用REST API和爲REST生成的新客戶端庫? – mikebz
是的,但缺乏時間和不斷逼近的最後期限不允許我進一步實施。 – user3150378