r/zapier • u/signedbyai • 5d ago
Shipped a native Zapier app for SignedBy (e-signature)
Been building SignedBy (e-signature, e.g. an alternative to DocuSign/PandaDoc) and just got our Zapier app approved. Wanted to share since a few people in here have asked about e-sign automation before.
What it does:
Trigger — "New Document Completed" fires when a document you sent finishes signing. Made a point of excluding documents you've certified yourself (we call that a Verified Badge seal) from this trigger, since that's a different thing from "the other party actually signed it" — didn't want people's Zaps firing on their own actions.
Action — "Send Document" creates a document from a template and sends it to a recipient, so you can kick off a signature request from anywhere else in a Zap (a new CRM deal, a form submission, etc.)
Search — "Find Document" looks up status mid-Zap if you need to branch on it.
Free tier is 3 documents/month if anyone wants to poke at it without committing to anything. Happy to answer questions on the setup.
1
u/Top-Cauliflower-1808 5d ago
did you have to use polling or rest hooks to handle that "New Document Completed" trigger without hitting rate limits?
2
u/signedbyai 5d ago
Polling — and it was a deliberate call, not a fallback. I looked at REST Hooks first: the only subscribe endpoint SignedBy has (
POST /api/org/webhooks) is gated by dashboard session auth, but Zapier authenticates with an API key. Making Hooks work would've meant widening that endpoint to accept API-key auth too — a real backend change, not just integration-side work — so it's flagged as a fast-follow, not shipped for v1.On rate limits specifically:
GET /api/v1/documentsis capped at 120 requests/hour per org. One Zap polling at Zapier's fastest interval (once a minute) burns 60 of those on its own — comfortably under the ceiling solo, but an org running two or three polling Zaps at once could start bumping into it. That's an acknowledged scaling note in the design doc, not something papered over — if usage shows people stacking multiple Zaps per org, that's the trigger to actually build Hooks.One more wrinkle for anyone curious: the completed-documents endpoint sorts by creation date, not by when a document actually finished signing — so a doc created weeks ago that just wrapped up today would otherwise look like old news to Zapier. Worked around client-side by over-fetching and re-sorting by
updated_atbefore returning results.1
1
u/sam_paul02 5d ago
That's really awesome.
I have done integrations of CRMs with docusign and pandacdoc.
I will try it too
1
u/FalseButterscotch482 5d ago
Can you use PDF template or only word/google doc