簡體   English   中英

如何代表第三方設置生產憑證

[英]how to set up production credentials on behalf of third party

我們需要一些幫助,以了解如何設置集成的生產方面。 我懷疑我們可能無法以我們最初預期的方式進行設置(盡管我確定有解決方法)。 作為背景:

我們為客戶編寫了一個自定義應用程序,旨在使客戶直接從我們為他們編寫的自定義應用程序中發送信封。

我們可能有問題的地方是,我們最初預計可以使用客戶現有的客戶帳戶發送信封。

我們正在使用帶有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 "; 

是我們什至試圖做的事情,還是我們的客戶必須將其帳戶轉移到我們的帳戶?

我相信您想要的是SOBO(代表發送)功能。 轉到DocuSign開發人員中心,在“文檔”頁面上,您會看到api指南。

DocuSign API文檔

由於您使用的是SOAP,請下載SOAP pdf或打開在線版本,然后搜索“代表”。 您將看到SOBO頁面,其中包含完成此工作所需的信息。

我特別要參考的頁面是:

索寶

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM