Managed secret providers
Airtable
Connect Airtable to Alter Vault for secure API access
Overview
Section titled “Overview”Use Airtable credentials to make authenticated API calls through Alter Vault without exposing API keys in code.
| Property | Value |
|---|---|
| Provider ID | airtable |
| Category | Productivity |
| Credential Type | Bearer Token |
Step 1: Get Credentials
Section titled “Step 1: Get Credentials”Log in to Airtable
Log in to Airtable at airtable.com.
Go to the Token Manager
Go to the Token Manager at airtable.com/create/tokens.
Create a new token
Click ‘Create new token’ and configure scopes and access.
Copy your token
Copy the generated personal access token.
Step 2: Add to Alter Vault
Section titled “Step 2: Add to Alter Vault”Open the Developer Portal
Go to portal.alterauth.com and navigate to the application.
Add Airtable
Go to Managed Secrets > Add Provider > Airtable.
Enter credentials
Paste your Personal Access Token into the credential field.
Save
Click Save. You’ll receive a grant_id to use with the SDK.
Using in Code
Section titled “Using in Code”response = await alter_app.request( HttpMethod.GET, "https://api.airtable.com/v0/YOUR_BASE_ID/YOUR_TABLE_NAME", grant_id="YOUR_GRANT_ID",)