n8n & Make¶
Both n8n and Make (formerly Integromat) can connect to Stackify via its REST API and webhooks. Use the HTTP Request node/module with your API key.
n8n¶
Connect with an API key¶
- In your n8n workflow, add an HTTP Request node.
- Set the URL to the Stackify API endpoint (see REST API).
- Set Authentication to Header Auth.
- Add a header:
Authorization→Bearer tvk_live_YOUR_KEY.
Trigger on new records (webhook)¶
- Add a Webhook node as the workflow trigger.
- Copy the generated webhook URL from n8n.
- In Stackify, go to Settings → Integrations → Webhooks → Add webhook.
- Paste the n8n URL and select the events to subscribe to (e.g.
record.created). - Save the webhook.
Now every new record in Stackify will trigger your n8n workflow.
Example: Stackify → Google Sheets¶
- Trigger: Webhook node (subscribe to
record.createdin Stackify) - Action: Google Sheets node → Append row
- Map the record fields from the webhook payload to Google Sheets columns
Make (formerly Integromat)¶
Connect with an API key¶
- In your Make scenario, add an HTTP module.
- Set the URL to the Stackify API endpoint.
- Under Headers, add:
Authorization: Bearer tvk_live_YOUR_KEY.
Trigger on new records (webhook)¶
- Add a Webhooks module as the scenario trigger → Custom webhook.
- Copy the generated URL.
- In Stackify, register this URL as a webhook subscription (see Webhooks).
Example: New form submission → Make scenario¶
- Trigger: Stackify form submission creates a record → webhook fires to Make
- Action: Send an email, update a CRM record, or create a Trello card
Tips for both platforms¶
- Use
GET /workspaces/{wid}/cards/{cid}/fieldsto discover field IDs and names dynamically — this avoids hard-coding IDs that could change. - Verify webhook signatures in your handler for security (see Webhooks → Verifying signatures).
- Use cursor-based pagination when pulling large record sets: pass
?limit=100&cursor=...and loop untilnext_cursoris null.