Skip to content

Managed secret providers

Airtable

Connect Airtable to Alter Vault for secure API access

Use Airtable credentials to make authenticated API calls through Alter Vault without exposing API keys in code.

PropertyValue
Provider IDairtable
CategoryProductivity
Credential TypeBearer Token

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.

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.

response = await alter_app.request(
HttpMethod.GET,
"https://api.airtable.com/v0/YOUR_BASE_ID/YOUR_TABLE_NAME",
grant_id="YOUR_GRANT_ID",
)