I'm trying to execute a simple API call to Fireberry:
const options = {
method: 'POST',
headers: {
accept: 'application/json',
'content-type': 'application/json',
tokenid: '...'
},
body: JSON.stringify({accountname: 'Test'})
};
fetch('https://api.powerlink.co.il/api/record/account', options)
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));
This exact call works in Make, but in Airtable it throws a 405 - 'Method not allowed'. It seems impossible to complete thi task without another tool like Make. Is there a fix / workaround?