How to decline a request in Hellosign eSignature API using node endpoint?

87 Views Asked by At

Is there any way to decline Hellosign's embedded signature request using the node.js endpoint?

1

There are 1 best solutions below

0
On

This is Hazem from HelloSign API Support.

Kindly note that ability to decline a request using the Node.js SDK is not available at this moment. That said, you can cancel a request using the "Cancel Incomplete Signature Request" endpoint:

Note: To be eligible for cancelation, a signature request must have been sent successfully, must not yet have been signed by all signers, and you must either be the sender or own the API app under which it was sent. A partially signed signature request can be canceled.

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.

I hope this help clear things up for you! Feel free to email us at [email protected] if you have any other questions or concerns.