I have successfully used Blynk to update a Google sheet.
But I would rather use Airtable than Google sheet. Airtable has an API but I fail to succeed (very likely due to my lack of programming skills ).
The following should create a record in my test Airtable base:
POST request:
curl -v -X POST https://api.airtable.com/v0/appCPeI9q4rWBmxr3/Table%201 \
-H "Authorization: Bearer keyXrwW9FnWRepYKg" \
-H "Content-Type: application/json" \
--data '{
"fields": {
"Date": "2019-09-19T08:34:00.000Z",
"Machine": 1,
"Credit": 100,
"Paid": 50
},
"typecast": true
}'
Thanks for any help.