如何使用节点端点拒绝 Hellosign eSignature API 中的请求?

问题描述

有什么办法可以使用 node.js 端点拒绝 Hellosign 的嵌入式签名请求吗?

解决方法

这是来自 HelloSign API 支持的 Hazem。

请注意,目前无法使用 Node.js SDK 拒绝请求。也就是说,您可以使用“Cancel Incomplete Signature Request" endpoint:

”取消请求

注意: 要符合取消资格,签名请求必须已成功发送,必须尚未由所有签名者签名,并且您必须是发送者或拥有发送请求时使用的 API 应用程序。可以取消部分签名的签名请求。

const hellosign = require('hellosign-sdk')({ key: 'API_KEY' });
hellosign.signatureRequest.cancel(signatureRequestId); 
// No local callback will fire. See the general description for the Cancel // Incomplete Signature Request endpoint for more information.

我希望这有助于为您解决问题!如果您有任何其他问题或疑虑,请随时发送电子邮件至 apisupport@hellosign.com。