I am trying to use an external API to automatically update some fields in my base based on a record ID using the script below.
let table = base.getTable("Tracker");
let view = table.getView("US");
let query = await view.selectRecordsAsync({
fields: ["appNo"],
});
for (let record of query.records) {
let patentStatus = await remoteFetchAsync(`https://developer.uspto.gov/ibd-api/v1/application/publications?patentApplicationNumber=${(`${record.getCellValueAsString("AppNo")}`)}`)
let data = await patentStatus.json()
But when I run the request the response I get back is an error with the message "Invalid SSL Certificate."
If there a way to work around this in Airtable?