Use the Fabra API to build customer-facing data warehouse integrations to let your customers start sending data to your application. Unblock your sales pipeline in days, not months.
pip install fabra
import fabra
from fabra.models import operations
s = fabra.Fabra(
security=shared.Security(
api_key_auth="YOUR_API_KEY_HERE",
),
)
req = operations.GetNamespacesRequest(
connection_id=548814,
)
res = s.connection.get_namespaces(req)
if res.namespaces is not None:
# handle response
- get_namespaces - Get all namespaces
- get_schema - Get schema for table
- get_tables - Get all tables
- create_destination - Create a new destination
- get_destinations - Get all destinations
- create_link_token - Create a new link token
- create_object - Create a new object
- get_objects - Get all objects
- create_source - Create a new source
- get_sources - Get all sources
- create_sync - Create a new sync
- get_syncs - Get all syncs