The Community will be temporarily unavailable starting on Friday February 28. We’ll be back as soon as we can! To learn more, check out our Announcements blog post.
Hello,I would like to know if changing my extension name and the dev contact is possible. I tried to find the solution in the code but didn't find any information. Do I have to recreate a new extension with the name I want? (I know I can change the e...
Hello, I am creating a json object from my airtable data to send it to a google script: //Table Bail --> xxxxx
//Table Locataire --> xxxxx
//Table Facturation --> xxxxx
//Table Roof --> xxxx
//Table Chambre --> xxxxx
let url = "https://script.googl...
Hello,I am coding a specific HTML form with google script and airtable. I am using the webhook automation with my HTML form (using action=" URL of my airtable webhook "). <form class="form_style" id="subscription_form" action="https://hooks.airtable...
Hello, I am a beginner in the API world and I am a little lost in my research. I have a script that sends data with webhook into a google script. I check with webhook site if my data was send correctly and I succeeded to retrieve the data from my air...
Hello, I am making a special CRM. I have customer information (name, phone, address…) and with this information, I would like to fill a google doc (there are variables like {{name}} and they have to be replaced with airtable data ).
I am used to jav...
Hello, yes I was new to airtable so I had no idea of a server response. Now I have fairly short deadlines and I was wondering if it was possible to tell my airtable script not to wait for the fetch response from the URL?and I plan to make the modific...
Hello, Thank you for your answer. My script runs faster but I think the problem comes from my google script. All the data I send to my google script from my airtable has to be processed. My airtable script is waiting response from my google script an...
Hello, First I create a json object with my airtable data: I also have a variable called url:let url = "the url link provided by google script"; Then I get that data into my google script with the function doPost(e) and I parse the result:I also crea...