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!