Loading...
Loading...
Copy-paste code examples to integrate SignQuick into your application in minutes.
Upload a PDF and add a signature field programmatically.
const doc = await signquick.documents.create({
file: fs.readFileSync('contract.pdf'),
name: 'Service Contract'
});Send a document to one or more signers via email.
await signquick.signingRequests.create({
documentId: doc.id,
signers: [{ email: '[email protected]' }]
});Download the completed, signed document.
const pdf = await signquick.documents.download(doc.id);
fs.writeFileSync('signed.pdf', pdf);Listen for signature completion events.
app.post('/webhook', (req, res) => {
if (req.body.event === 'signing.completed') {
console.log('Document signed!');
}
res.sendStatus(200);
});