Skip to main content

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?



Try this…


let postGET = "https://...";

let getOptions = {
method: "GET",
headers: {
'Accept' : 'application/json',
},
}
const getResults = await remoteFetchAsync(getURL, getOptions);
const jsonPost = await getResults.json();


Try this…


let postGET = "https://...";

let getOptions = {
method: "GET",
headers: {
'Accept' : 'application/json',
},
}
const getResults = await remoteFetchAsync(getURL, getOptions);
const jsonPost = await getResults.json();

that did it! Thanks!


Reply