来自 ERP #DocuSignAPI 的 Docusign 接口
Docusign Interface from ERP #DocuSignAPI
嗨,
我查看了 Docusign API。
但我已经有一些问题了。
这是我的情况:
- 我们公司使用 Odoo (Openerp8) 作为 ERP 系统。
- 将来我们不希望客户使用 docusign 签署报价。
这是我的问题:
- 将来,销售人员应该在我们的 ERP 系统中创建报价,然后他应该触发一个操作,ERP 调用 DocuSign API。
它应该填写一个 PDF 模板并将 PDF 发送给客户端,然后通过 API 调用将其提供给 docusign。
我们的 Offer PDF 有一些占位符,应该由 API Call?
填写
像这样的复杂 API 调用是否可行?
下一个问题,如果客户签署了文档会怎样。
我的 ERP 系统是否有可能获取客户已签署文件的信息?也许它会将副本发送到一个电子邮箱,该电子邮箱将根据 ERP 获取。
因为在客户签署文件后,我的ERP应该开始入职。
希望第一个和/或第二个问题可以
与文档签名 api
谢谢
戈瓦特
开始之前
首先,我会联系 Odoo,看看他们是否有计划在不久的将来与 DocuSign 集成。我没有在 DocuSign Partner's Solution Showcase 上看到它们,但这并不意味着它们还没有投入大量精力来构建您想要的基本功能。
从 DocuSign API 的角度
问题 1:
It should fill out a PDF Template and sends the PDF to the client,
which is given to docusign over the API Call. Our Offer PDF have some
placeholders which should filled out by the API Call?
是的,这可以通过 API 实现。解决这个问题的最简单方法是创建一个 DocuSign 模板并在发送时使用它,如果数据来自 PDF 外部,则动态填充表单值,或者如果信息在 PDF 内部,则转换表单字段。
要查看的示例代码:DocuSign API Walkthroughs - Request Signature via Template
问题 2:
And the next question, what happens if the client has signed the
document. Is it possible that my ERP System gets the information, that
the client has signed the document?
处理此问题的建议方法是设置连接侦听器,DocuSign 将推送通知(基于您的连接设置参数)。您可能会将其托管在您自己的某个服务器上,并让 ERP ping 服务器以获取更新。
或者,您可以让系统获取状态并根据响应进行更新。你要小心这个并确保你满足 DocuSign API 认证清单的要求。
引自DocuSign API Developer Center - API Best Practices
Additionally, your API certification review involves verifying that
you do not exceed 1 status request per unique envelope per 15 minutes
for polling compliance for the following methods:
SOAP API:
RequestStatus, RequestStatusEx, RequestStatuses, RequestStatusesEx,
RequestPDF and RequestDocumentPDFs.
REST API: GET
/accounts/{accountId}/envelopes
嗨,
我查看了 Docusign API。 但我已经有一些问题了。 这是我的情况:
- 我们公司使用 Odoo (Openerp8) 作为 ERP 系统。
- 将来我们不希望客户使用 docusign 签署报价。
这是我的问题:
- 将来,销售人员应该在我们的 ERP 系统中创建报价,然后他应该触发一个操作,ERP 调用 DocuSign API。
它应该填写一个 PDF 模板并将 PDF 发送给客户端,然后通过 API 调用将其提供给 docusign。 我们的 Offer PDF 有一些占位符,应该由 API Call?
填写像这样的复杂 API 调用是否可行?
下一个问题,如果客户签署了文档会怎样。 我的 ERP 系统是否有可能获取客户已签署文件的信息?也许它会将副本发送到一个电子邮箱,该电子邮箱将根据 ERP 获取。 因为在客户签署文件后,我的ERP应该开始入职。
希望第一个和/或第二个问题可以 与文档签名 api 谢谢 戈瓦特
开始之前
首先,我会联系 Odoo,看看他们是否有计划在不久的将来与 DocuSign 集成。我没有在 DocuSign Partner's Solution Showcase 上看到它们,但这并不意味着它们还没有投入大量精力来构建您想要的基本功能。
从 DocuSign API 的角度
问题 1:
It should fill out a PDF Template and sends the PDF to the client, which is given to docusign over the API Call. Our Offer PDF have some placeholders which should filled out by the API Call?
是的,这可以通过 API 实现。解决这个问题的最简单方法是创建一个 DocuSign 模板并在发送时使用它,如果数据来自 PDF 外部,则动态填充表单值,或者如果信息在 PDF 内部,则转换表单字段。
要查看的示例代码:DocuSign API Walkthroughs - Request Signature via Template
问题 2:
And the next question, what happens if the client has signed the document. Is it possible that my ERP System gets the information, that the client has signed the document?
处理此问题的建议方法是设置连接侦听器,DocuSign 将推送通知(基于您的连接设置参数)。您可能会将其托管在您自己的某个服务器上,并让 ERP ping 服务器以获取更新。
或者,您可以让系统获取状态并根据响应进行更新。你要小心这个并确保你满足 DocuSign API 认证清单的要求。
引自DocuSign API Developer Center - API Best Practices
Additionally, your API certification review involves verifying that you do not exceed 1 status request per unique envelope per 15 minutes for polling compliance for the following methods:
SOAP API: RequestStatus, RequestStatusEx, RequestStatuses, RequestStatusesEx, RequestPDF and RequestDocumentPDFs.
REST API: GET /accounts/{accountId}/envelopes