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.
Hey,
I want to sync my base with another endpoint.
Thus I created an automation with a trigger on update > than fetch result with post request to other endpoint.
The problem is, that I do not get any response.
const res = await fetch(url, { method: "...
I found my mistake.
the correct code is:
const res = await fetch(url, { method: "POST", body: JSON.stringify(body), headers: headers })
const data = await res.json()
console.log(data)