Authentication Method
The Airtable plugin uses API key authentication.api_key(default) — Personal access token (PAT) for the REST API
API Key (Personal Access Token)
Step 1: Create a Personal Access Token
- Open Airtable token management (or Account → Developer hub → Personal access tokens).
- Click Create token.
- Give the token a name (for example,
Corsair). - Add access to the bases (and scopes) your integration needs — at minimum, the bases you plan to read or write.
- Under Scopes, include the data permissions required by your workflows (for example,
data.records:read,data.records:write,schema.bases:read). - Create the token and copy it immediately. You will not see it again.
Webhook Signing Secret
When you configure a webhook in Airtable for a base, the provider gives you a signing secret used to verify incoming payloads.- In Airtable, open the base → Automations or Extensions flow that posts to your webhook (per your Airtable webhook setup).
- Copy the webhook signing secret (or MAC secret) shown for that destination.
- Store it with Corsair so
processWebhookcan verify signatures.
Required Credentials Summary
| Credential | Required for | Where to find |
|---|---|---|
| Personal access token | api_key auth | create/tokens |
| Webhook signing secret | Webhooks | Airtable webhook / automation configuration for your base |