我们需要一些帮助来了解如何设置集成的生产端。我怀疑我们可能无法按照我们最初预期的方式进行设置(尽管我确信有一种解决方法)。作为背景:
我们为客户编写了一个自定义应用程序,旨在允许客户直接从我们为他们编写的自定义应用程序发送信封。
我们可能遇到的问题是,我们最初预计可以使用客户现有的 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 ";
我们正在尝试什么,或者我们的客户必须将他们的帐户转移到我们的帐户吗?