0

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

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

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

我们正在使用带有 ac# 应用程序的soap api。我们的测试凭据是按照以下伪代码在 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 "; 

我们正在尝试什么,或者我们的客户必须将他们的帐户转移到我们的帐户吗?

4

2 回答 2

0

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

DocuSign API 文档

由于您使用的是 SOAP,请下载 SOAP pdf 或打开在线版本,然后搜索“代表”。您会看到 SOBO 页面出现,其中包含完成这项工作所需的信息。

这个页面特别是我引用的那个:

索博

于 2013-07-18T06:32:20.390 回答
0

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

于 2013-07-18T00:01:22.053 回答