Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.morph-data.io/llms.txt

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

Connecting to Airtable

For an overview of the connector, please refer to the following link:
1

Create a Connector

Select the “Connectors” tab on the top page and press the “Create” button.Connection
2

Enter Airtable Credentials

Select Airtable and press the sign-in button.Airtable Connection CreateAfter entering the information, press the Create button to complete the creation. If there are any errors, please check the connection details again.
3

Obtain access_token from the created connector

Once created successfully, you can obtain the connector name from the list.Use the dedicated function to enter the connector name in the Python code and obtain the access_token.
import morph
from morph import MorphGlobalContext
from morph_lib.api import get_auth_token


@morph.func
def main(context: MorphGlobalContext):
    access_token = get_auth_token("connection_name")
    # ↓↓↓ Process using access_token ↓↓↓