Hello everyone, I have a very simple JSON POST to the Airtable API but am unable to Post an object into the Fields.
{
“fields”: {
“Time”: “{time}”,
“DeviceID”: “{device}”,
“Payload”: “{data}”,
“computedLocation”:{computedLocation}
}
}
In my Airtable, “Time”, “DeviceID”, “Payload” are all fields, yet {computedLocation} is an object which has the following variables: “lat”, “lng”, “radius”, “source” and "status.
My question is how do I parse an object into specific fields in Airtable?
Something like
“Lat”:"{computedLocation.lat}" isn’t working.