Microsoft OneDrive
Mirror every client upload to OneDrive
Same as the Drive recipe but for Microsoft 365 shops. Each client's files land in a folder named after the client inside your OneDrive backup folder.
12 min setup Trigger:
file.uploaded mediumworks with Zapierworks with Make.com
Setup steps
- In Make / Zapier: webhook trigger.
- Add a step that calls back to ClientNest365's signed-download API for the file bytes.
- Add a 'OneDrive Upload File' step targeting a folder structure like /CN-backup/[client.slug]/.
- In ClientNest365: subscribe a new webhook to file.uploaded.
Payload fields you'll use
file.idfile.nameclient.slug
Where to wire it in ClientNest365
Open your workspace at /app/settings/webhooks. Click + New endpoint. Paste the target URL from your automation platform (Zapier, Make, n8n) or the third-party tool's native webhook URL. Subscribe to the file.uploaded event. Save. Your endpoint secret is shown once at creation; copy it now if you plan to verify the HMAC signature on the receiving end.
Verifying the signature
Each webhook POST carries an X-CN-Signature header. The value is sha256=<hmac> where the HMAC is computed over the raw request body using your endpoint secret. Compare with constant-time equality. Reject mismatches.