Work in Progress: How To Fetch Data from a specific row in Airtable in a Computed Field
For fetching data from Airtable we will have to use an Async Computed Field
Step 1: Create the Async Computed Field
Mark the async checkbox after creating the New Computed Field
Step 2: Settings of the Flow
In Entire Flow --> Options --> Advance, add the Keys that we will need to identify the Airtable row from where we want to extract the data. In this case, it would be customer_id
Step 3: Generate the function for the async Computed Field
Step 4: Getting the Data in the Response
The Data is going to come as a JSON object, so we only need to access the fields we need by dot notation for example d.customer_id
or d.main_score
Last updated