Airtable
Last updated
Was this helpful?
Was this helpful?
{% action "airtable" %}
{
"account": "AIRTABLE_ACCOUNT_NAME",
"method": "POST",
"url_path": "/v0/meta/bases/AIRTABLE_BASE_ID/tables",
"headers": {
"Content-Type": "application/json"
},
"body": {
"name": "Example Checklist",
"fields": [
{
"name": "TODO",
"type": "singleLineText"
},
{
"name": "Complete",
"type": "checkbox",
"options": {
"color": "greenBright",
"icon": "check"
}
}
]
}
}
{% endaction %}{% action "airtable" %}
{
"account": "AIRTABLE_ACCOUNT_NAME",
"method": "POST",
"url_path": "/v0/meta/bases/AIRTABLE_BASE_ID/AIRTABLE_TABLE_ID",
"headers": {
"Content-Type": "application/json"
},
"body": {
"records": [
{
"fields": {
"TODO": "Review Mechanic",
"Complete": false
}
}
]
}
}
{% endaction %}{
"type": "airtable",
"run": {
"ok": true,
"result": {
"status": 200,
"body": {
...
}
}
}
}