The Core Concept: Dynamic URL Construction in Automations
The fundamental principle remains the same: you need to dynamically construct the correct Shareable URL within your automation workflow. This involves combining the static base URL and Snippet ID with the appropriate dynamic parameter (rec= for Single Item details or p= for User-based Permission filtering) using variables provided by the trigger step of your automation.
For a detailed explanation of the URL structure, see: Understanding the Shareable URL Structure
Example Scenario: Sending an Order Summary Snippet
Let’s illustrate with a common use case: automatically emailing a customer a snippet link to view their specific order details after they place an order.Scenario Setup
Scenario Setup
- Airtable Setup: You have an “Orders” table with fields like
Product Name,Total Amount, andCustomer Email. - Crust AI Setup: You have created a Single Item Snippet based on this “Orders” table, designed to show the details of one order (let’s call it the “Your Order Summary” snippet). You have its base URL and Snippet ID ready (e.g.,
https://app.trycrust.ai/<order_summary_snippet_id>/detail/). - Goal: When a new record is added to the “Orders” table, automatically send an email to the
Customer Emailcontaining a link to the “Your Order Summary” snippet, displaying only the details of that newly created order.
Implementation Options (same concept for Notion, Monday.com and Google Sheets)
- Make (Integromat)
- Zapier
1
Trigger: Airtable 'Watch Records'
Use the Airtable “Watch Records” module. Configure it to watch your “Orders” table for new records.
2
Action: Email Module
Use an email module (e.g., “Email,” “Gmail,” “Microsoft 365 Email”). Configure the “Send an email” action.
3
Construct the Snippet URL
Within the email body configuration, you will build the dynamic URL using Make’s variable mapping:
- Start with the static part of your snippet URL:
- Append the
ID(Record ID) variable provided by the Airtable trigger module. The final URL string in Make would look similar to:
Make URL Example
(The exact variable reference {{1.id}} might differ based on your Make scenario structure. Ensure you map the Record ID correctly.)4
Configure Email Details
- Map the
Customer Emailfield variable from the Airtable trigger to the “To” address field. - Compose your email subject and body, embedding the dynamically constructed URL from the previous step, perhaps as a hyperlink.
Integrating Crust AI Shareable URLs into Make, Zapier, or similar platforms unlocks powerful automation possibilities, enabling you to deliver personalized, live data views to your users automatically based on events in your data or other connected applications.
