Hi,
construct your URL here:
Airtable API Encoder
Set base ID, table name, filter by formula (put email in " duoble quotes, %22 )
field name is case-sensitive(maybe) and if it contains spaces, should be in { }
Result will be smth like:
const link = 'https://api.airtable.com/v0/app_YOUR_BASEID/yourTableName?filterByFormula=email%3D%22username%40domain.com
then add:
const options={
method: 'GET',
headers: {
'Content-Type': 'application/json',
'Authorization': 'Bearer '+ YOUR_KEY}
}
let response = await remoteFetchAsync(link, options)
const pageSummary = await response.json();
output.inspect(pageSummary)