我在DocuSign中有一个沙箱帐户,我计划使用SoapUI来测试通过Web服务将信封发送到DocuSign。我应该为沙箱帐户使用哪个wsdl URL?

另外,如果我想切换为使用REST而不是SOAP,请为REST使用哪个URL?

谢谢

最佳答案

DocuSign Web服务的主要域

现场(制作)

https://www.docusign.nethttps://na2.docusign.net] -仅用于现场(生产中)使用。使用情况由购买的计划合同规定。 API集成的应用程序可以调用此环境之前,必须先获得认证。

注意:产品站点是NA1(www.docusign.net),NA2(na2.docusign.net)和EU1(eu1.docusign.net)

注意:EU1通常保留给主要在西半球以外运营的帐户使用。

沙盒(演示)

https://demo.docusign.net-用于开发和测试。该站点类似于生产环境,但可扩展性/稳定性不高。使用免费。该站点还充当灾难恢复站点,并且应始终包含在用于配置/允许访问的任何IP地址/ URL表中。

肥皂

DocuSign SOAP端点和WSDL:

一般来说,

https://{site}.docusign.net/api/3.0/dsapi.asmx?wsdl


浏览到https://www.docusign.net/api/3.0/dsapi.asmx提供了一个列出方法的页面,并带有显示用于调用该方法的SOAP主体结构示例的链接(示例包括请求和响应)。

NA1的示例:

https://www.docusign.net/api/3.0/dsapi.asmx?wsdl
https://www.docusign.net/api/3.0/Credential.asmx?wsdl
https://www.docusign.net/api/3.0/accountmanagement.asmx?wsdl


休息

https://www.docusign.net/restapi/help


API端点

像REST一样使用X-DocuSign-Authentication HTTP标头,请参见此帖子How should the header X-DocuSign-Authentication be used for REST and SOAP?

肥皂

https://www.docusign.net/api/3.0/dsapi.asmx
https://www.docusign.net/api/3.0/Credential.asmx
https://www.docusign.net/api/3.0/accountmanagement.asmx


施玛

https://demo.docusign.net/api/3.0/schema/dsx.xsd


通过SOAP标头中的WS-Security UsernameToken进行认证。

注意:此端点还有dsapi.asmx端点不可用的4个其他过时的方法。建议您避免使用该端点,除非您需要WS-Security或4种过时的方法:(最早的示例中已显示)

https://www.docusign.net/api/3.0/api.asmx


休息

需要X-DocuSign-Authentication标头,请参见此帖子How should the header X-DocuSign-Authentication be used for REST and SOAP?

https://www.docusign.net/restapi/
https://www.docusign.net/restapi/v1
https://www.docusign.net/restapi/v2

关于docusignapi - 使用沙盒帐户的SOAP使用哪个WSDL URL?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/21388776/

10-11 10:51