Work in Progress: How To Fetch Data from a specific row in Airtable in a Computed Field
Step 1: Create the Async Computed Field
Step 2: Settings of the Flow
Step 3: Generate the function for the async Computed Field
function result({
customer_id,
}) {
return fetch(`https://api.airtable.com/v0/appZTPe3D7r1qi7KA/Report%20Results/${customer_id}`, {
method: 'GET',
headers: {
'Authorization': 'Bearer API_KEY',
},
}).then(response => response.json())
.then(data => {
const d = data.fields
return d
})
}
Step 4: Getting the Data in the Response
Last updated