尝试从 SOAP API 使用 CreateEnvelopeFromTemplate 时出现错误。错误指出:
“未为此帐户启用请求的计划项目。计划项目:AllowRequireSignerCertificate”
值得注意的是,我只有一个模拟账户,而不是生产账户。其他有用信息:
- SOAP API
- .NET MVC 4.5 应用程序
- C#
代码片段:
DS.TemplateReference templateReference = new DS.DocuSignAPI.TemplateReference();
templateReference.Template = _templateID;
templateReference.TemplateLocation = DS.TemplateLocationCode.Server;
DS.EnvelopeInformation envelopeInfo = new DS.EnvelopeInformation();
envelopeInfo.AccountId = _accountId;
envelopeInfo.Subject = "Test Subject";
envelopeInfo.EmailBlurb = "Test Email Content";
DS.EnvelopeStatus status = client.CreateEnvelopeFromTemplates(new DS.TemplateReference[ {templateReference}, _recipients, envelopeInfo, false); -- fails here