The Airtable Community will undergo scheduled maintenance on September 17 from 10:00 PM PST to 11:15 PM PST. During this period, you may experience temporary disruptions. We apologize for any inconvenience and appreciate your understanding.
Feb 09, 2021 05:18 PM
I’m not sure what I’m doing with remoteFetchAsync, but when I make the same API call in Postman I get a response with the list of warehouses. When I do it in Airtable I just get a status. What can I do to get the response back?
Solved! Go to Solution.
Feb 10, 2021 02:54 PM
Try this…
let postGET = "https://...";
let getOptions = {
method: "GET",
headers: {
'Accept' : 'application/json',
},
}
const getResults = await remoteFetchAsync(getURL, getOptions);
const jsonPost = await getResults.json();
Feb 10, 2021 02:54 PM
Try this…
let postGET = "https://...";
let getOptions = {
method: "GET",
headers: {
'Accept' : 'application/json',
},
}
const getResults = await remoteFetchAsync(getURL, getOptions);
const jsonPost = await getResults.json();
Feb 10, 2021 03:32 PM
that did it! Thanks!