Retrieve the access_token obtained from Integration.
# 📦 Package: morph_lib.api # 🛠️ Function: get_auth_token get_auth_token( connection: str ) -> str
Specify the name of the Integration registered on the screen.
import pandas as pd import morph from morph import MorphGlobalContext from morph_lib.api import get_auth_token @morph.func( name="freee_get_balance", description="Freee Preprocess", output_type="dataframe", ) def freee_get_balance(context: MorphGlobalContext) -> pd.DataFrame: access_token = get_auth_token("salesforce_integration_name") # ↓↓↓ call API with access_token ↓↓↓