Hi
I'm reading my Airtable data using the API which is working fine, I'm now trying to write back to Airtable but I am having issues.
I can write to Airtable successfully if the field is a string or a number but I can't when it's a currency. Any ideas how I do this?
This is how I am currently doing it:
Request.headers['Authorization'] = 'Bearer API here'
const obj = Noodl.Object.get(Inputs.ObjectId)
Request.content = {
records: [
{
fields: {
"Overhead": obj["Overhead"],
"Amount": obj["Amount"]
}
}
]
}
Amount is currently a number although it doesn't matter if it's a string or a number as they both work but currency does not.