Access Enterprise features
mainpyAirtable provides classes and methods to interact with enterprise organizations. Note that these methods require an Enterprise plan. If you attempt to call these methods against a base or workspace that is not part of an enterprise organization, Airtable will return a 404 error, and pyAirtable will include a reminder in the exception to check your billing plan.
Available entry points include:
pyairtable.Api.enterprise()to access enterprise-level operations.pyairtable.Base.collaborators()andpyairtable.Base.shares()for base-specific enterprise management.pyairtable.Workspace.collaborators()for workspace-level management.pyairtable.Enterprise.info()to retrieve organization information.
# Example of accessing the enterprise object via the API
from pyairtable import Api
api = Api(api_key='...')
enterprise = api.enterprise()