如何代表第三方设置生产凭证

本文关键字:凭证 设置 何代表 第三方 | 更新日期: 2023-09-27 18:22:51

我们需要一些帮助来了解如何设置集成的生产端。我怀疑我们可能无法按照最初预期的方式进行设置(尽管我确信有一个变通方法)。作为背景方式:

我们为客户编写了一个自定义应用程序,旨在允许客户直接从我们为他们编写的自定义应用程序中发送信封。

我们可能遇到的问题是,我们最初预计信封可以使用客户现有的docusign帐户发送。

我们将soap api与c应用程序结合使用。我们的测试证书是按照以下伪代码在c#中设置的:

...
credentials.AccountId = " our account id here ";
credentials.UserName = "[ our integrator key here ]" + "our email address";
credentials.password = " our password ";
credentials.ApiUrl = " the demo api url ";
...
// elsewhere when we define the envelope we say
envelope.AccountId = " our account id here ";

现在,在生产中,这就是我们想要做的:

...
credentials.AccountId = " our customer's account id here ";
credentials.UserName = "[ our integrator key here ]" + [our customer's send on behalf of email address] + "our email address";
credentials.password = " our customer's password ";  // or our password perhaps?
credentials.ApiUrl = " the production api url ";
...
// elsewhere when we define the envelope we would say
envelope.AccountId = " our customer's account id here "; 

我们正在尝试的是可能的,还是我们的客户必须将他们的账户转移到我们的账户?

如何代表第三方设置生产凭证

了解联邦http://msdn.microsoft.com/en-us/library/bb897402.aspx依赖方信任

我相信您想要的是SOBO(代表发送)功能。转到DocuSign开发人员中心,在文档页面上可以看到api指南。

DocuSign API文档

由于您使用的是SOAP,请下载SOAP pdf或打开在线版本,然后搜索"代表"。你会看到SOBO页面出现,里面有你需要的信息。

这个页面尤其是我所引用的页面:

SOBO