Airtable
Log every classified document to Airtable
Each uploaded file appears as a row in an Airtable base, with the AI classification and confidence score. Useful for audit, sampling, or downstream reporting.
7 min setup Trigger:
file.classified easyworks with Zapierworks with Make.comworks with n8n
Setup steps
- Create an Airtable base with fields: File name, Client, Category, Confidence, Uploaded at.
- In Make / Zapier: webhook trigger, then 'Airtable Create Record'.
- Map the payload fields to the Airtable columns.
- In ClientNest365: subscribe a new webhook to file.classified.
Payload fields you'll use
file.namefile.classificationfile.classification_confidenceclient.namefile.created_at
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.classified 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.