嵌入式签名用户界面

问题描述

我使用嵌入式 UI 来创建模板和文档。我想知道在 UI 中填充的数据,并且还必须将它们存储在我的数据库中,然后使用 3rd 方工具进行签名。此流程是否可以将数据存储在我的数据库中?

解决方法

借助 HelloSign API,您可以通过多种方式获取模板信息:

获取模板端点 获取 /template/[:template_id] 获取通用模板详细信息并包括可以访问它的帐户列表 https://app.hellosign.com/api/reference#get_template

获取模板文件端点 获取 /template/files/[:template_id] 获取模板原始文件的副本。 https://app.hellosign.com/api/reference#get_template_files

最后,如果您想要签名者输入的信息,您可以轮询 API 或侦听回调,这些回调将为您提供所述数据以存储在您的数据库中。 https://app.hellosign.com/api/eventsAndCallbacksWalkthrough(最佳做法)

Get Signature Request Endpoint 可用于轮询此信息 GET /signature_request/[:signature_request_id] 获取一个 SignatureRequest,其中包括每个签名者的当前状态。 https://app.hellosign.com/api/reference#get_signature_request