Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.alterauth.com/llms.txt

Use this file to discover all available pages before exploring further.

Overview

Use Airtable credentials to make authenticated API calls through Alter Vault without exposing your API keys in code.
PropertyValue
Provider IDairtable
CategoryProductivity
Credential TypeBearer Token

Step 1: Get Your Credentials

1

Log in to Airtable

Log in to Airtable at airtable.com.
2

Go to the Token Manager

Go to the Token Manager at airtable.com/create/tokens.
3

Create a new token

Click ‘Create new token’ and configure scopes and access.
4

Copy your token

Copy the generated personal access token.
Never share your credentials publicly. Store them securely and only enter them in the Alter Vault Developer Portal.

Step 2: Add to Alter Vault

1

Open the Developer Portal

Go to portal.alterauth.com and navigate to your app.
2

Add Airtable

Go to Managed Secrets > Add Provider > Airtable.
3

Enter your credentials

Paste your Personal Access Token into the credential field.
4

Save

Click Save. You’ll receive a grant_id to use with the SDK.

Using in Code

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