2016-08-23 11 views
0

DocuSignでC#を使用してSOAP APIを使用しています。 封筒には、有効期限を2016年末に設定しようとしています。DocuSignのサポートごとに、最大許容値は999です。しかし、Webサイトの正しいモードで封筒を見ると、セット。私たちの会社はそれを90日に設定しています。それは私が見る有効期限です。私は別の変数の元を定義していたし、任意の値を設定せずに1つを使用していた - ユーザエラーだったDocuSign SOAP Expirationsが設定されていません

DocuSignAPI.Envelope envelope = new DocuSignAPI.Envelope(); 
envelope.EnableWetSign = false; 
envelope.AllowReassign = false; 
DocuSignAPI.Expirations exp = new DocuSignAPI.Expirations(); 
exp.ExpireEnabled = true; 
exp.ExpireAfter = "128"; 
exp.ExpireWarn = "0"; 
+0

。 – user3150378

答えて

0
     DocuSignAPI.Notification ntf = new DocuSignAPI.Notification(); 
        envelope.Notification = ntf; 
        DocuSignAPI.Reminders rem = new DocuSignAPI.Reminders(); 
        DocuSignAPI.Expirations exp = new DocuSignAPI.Expirations(); 
        envelope.Notification.Expirations = exp; 
        exp.ExpireEnabled = true; 
        exp.ExpireAfter = totDays.ToString(); 
        exp.ExpireWarn = "0"; 
関連する問題