The Community will be temporarily unavailable starting on Friday February 28. We’ll be back as soon as we can! To learn more, check out our Announcements blog post.
This is what you should do:
if you’re passing data as JSON, you should call:
const url = "https://hooks.airtable.com/workflows/v1/genericWebhook/urlxyz";
let options = {
method: "POST",
headers: { 'Content-Type': 'application/json' },
bod...