For the complete documentation index, see llms.txt. This page is also available as Markdown.

Airtable

Connect Mechanic to your Airtable bases! You can then use any of the features in the Airtable API. You now have a full Shopify to Airtable integration.

Authentication

You can connect more than one Airtable account choosing which account to use when writing your task code.

Before using Airtable integrations connect your Airtable accounts:

  1. Go to Settings β†’ Authentication in Mechanic

  2. Select Airtable in the provider list

  3. Connect your Airtable account

Basic Usage

See full usage here.

{% 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 %}

Last updated

Was this helpful?