Skip to main content
ClientNest365ClientNest365

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 easy
works with Zapierworks with Make.comworks with n8n

Setup steps

  1. Create an Airtable base with fields: File name, Client, Category, Confidence, Uploaded at.
  2. In Make / Zapier: webhook trigger, then 'Airtable Create Record'.
  3. Map the payload fields to the Airtable columns.
  4. In ClientNest365: subscribe a new webhook to file.classified.

Payload fields you'll use

  • file.name
  • file.classification
  • file.classification_confidence
  • client.name
  • file.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.