The Community will be undergoing maintenance from Friday February 21 - Friday, February 29 and will be "read only" during this time. To learn more, check out our Announcements blog post.
I am trying to connect Google API to access Google Drive and Google Docs inside Airtable automation script.I setup a project with credentials and redirect URI on Google Cloud console and I am able to successfully get authorize code and access token....
Hello,I am new to Airtable. I am trying to do one automation which is as follows.I have a table named "(OMS) Invoices" having 2 newly added columns which I want to use for this automation.First Column name is "Generate Invoice" which is a button with...
@Sticker_ninjaNot sure if you found the solution, but this can be done via Run Scripts block on Airtable Automations. Though I am still having issues with oauth for it. Let me know if you have found out any other way.
Here is my code// Function to make HTTP POST request
async function makePostRequest(url, headers, body) {
try {
const response = await fetch(url, {
method: 'POST',
headers: headers,
body: JSON.stringify...
Thanks for your response Dilip.A follow up question -1. Yes, the extension won't save PDF automatically and it has to be done manually for sure. I want to understand if programmatically clicking of button inside "Generate Invoice" is possible via run...