Skip to main content

Installation

Install the SDK using pip:
Using Poetry:
Using pipenv:

Requirements

  • Python: 3.8 or higher
  • requests: >=2.25.0 (automatically installed)
  • typing-extensions: >=4.0.0 (automatically installed)

Python Compatibility

The BundleUp SDK is tested and supported on:
  • Python 3.8
  • Python 3.9
  • Python 3.10
  • Python 3.11
  • Python 3.12

Features

  • 🚀 Pythonic API - Follows Python best practices and PEP 8
  • 📦 Easy Integration - Simple, intuitive API design
  • Async Support - Built on requests with async capabilities
  • 🔌 100+ Integrations - Connect to Slack, GitHub, Jira, Linear, and many more
  • 🎯 Unified API - Consistent interface across all integrations via Unify API
  • 🔑 Proxy API - Direct access to underlying integration APIs
  • 🪶 Lightweight - Minimal dependencies
  • 🛡️ Error Handling - Comprehensive error messages and validation
  • 📚 Well Documented - Extensive documentation and examples
  • 🔍 Type Hints - Full type annotations for better IDE support
  • 🧪 Tested - Comprehensive test suite with pytest

Quick Start

Get started with BundleUp in just a few lines of code:

Authentication

The BundleUp SDK uses API keys for authentication. You can obtain your API key from the BundleUp Dashboard.

Getting Your API Key

  1. Sign in to your BundleUp Dashboard
  2. Navigate to API Keys
  3. Click Create API Key
  4. Copy your API key and store it securely

Initializing the SDK

Security Best Practices

  • DO store API keys in environment variables
  • DO use a secrets management service in production
  • DO rotate API keys regularly
  • DON’T commit API keys to version control
  • DON’T hardcode API keys in your source code
  • DON’T share API keys in public channels
Example .env file:
Loading environment variables: Install python-dotenv:
Then in your application:
For Django applications:
For Flask applications:

Core Concepts

Platform API

The Platform API provides access to core BundleUp features like managing connections and integrations. Use this API to list, retrieve, and delete connections, as well as discover available integrations.

Proxy API

The Proxy API allows you to make direct HTTP requests to the underlying integration’s API through BundleUp. This is useful when you need access to integration-specific features not covered by the Unify API.

Unify API

The Unify API provides a standardized, normalized interface across different integrations. For example, you can fetch chat channels from Slack, Discord, or Microsoft Teams using the same API call.

API Reference

Connections

Manage your integration connections.

List Connections

Retrieve a list of all connections in your account.
With query parameters:
Query Parameters:
  • integration_id (str): Filter by integration ID
  • integration_identifier (str): Filter by integration identifier (e.g., ‘slack’, ‘github’)
  • external_id (str): Filter by external user/account ID
  • limit (int): Maximum number of results (default: 50, max: 100)
  • offset (int): Number of results to skip for pagination
Response:

Retrieve a Connection

Get details of a specific connection by ID.
Response:

Delete a Connection

Remove a connection from your account.
Note: Deleting a connection will revoke access to the integration and cannot be undone.

Integrations

Discover and work with available integrations.

List Integrations

Get a list of all available integrations.
With query parameters:
Query Parameters:
  • status (str): Filter by status (‘active’, ‘inactive’, ‘beta’)
  • limit (int): Maximum number of results
  • offset (int): Number of results to skip for pagination
Response:

Retrieve an Integration

Get details of a specific integration.
Response:

Webhooks

Manage webhook subscriptions for real-time event notifications.

List Webhooks

Get all registered webhooks.
With pagination:
Response:

Create a Webhook

Register a new webhook endpoint.
Webhook Events:
  • connection.created - Triggered when a new connection is established
  • connection.deleted - Triggered when a connection is removed
  • connection.updated - Triggered when a connection is modified
Request Body:
  • name (str): Friendly name for the webhook
  • url (str): Your webhook endpoint URL
  • events (dict): Events to subscribe to
Response:

Retrieve a Webhook

Get details of a specific webhook.

Update a Webhook

Modify an existing webhook.

Delete a Webhook

Remove a webhook subscription.

Webhook Payload Example

When an event occurs, BundleUp sends a POST request to your webhook URL with the following payload:

Webhook Security (Flask Example)

To verify webhook signatures in a Flask application:
Django Example:

Proxy API

Make direct HTTP requests to integration APIs through BundleUp.

Creating a Proxy Instance

GET Request

With query parameters:
With custom headers:

POST Request

With custom headers:

PUT Request

PATCH Request

DELETE Request

Working with Response Objects

The Proxy API returns requests Response objects:

Unify API

Access unified, normalized data across different integrations with a consistent interface.

Creating a Unify Instance

Chat API

The Chat API provides a unified interface for chat platforms like Slack, Discord, and Microsoft Teams.
List Channels
Retrieve a list of channels from the connected chat platform.
Parameters:
  • limit (int, optional): Maximum number of channels to return (default: 100, max: 1000)
  • after (str, optional): Pagination cursor from previous response
  • include_raw (bool, optional): Include raw API response from the integration (default: False)
Response:
Pagination example:

Git API

The Git API provides a unified interface for version control platforms like GitHub, GitLab, and Bitbucket.
List Repositories
Response:
List Pull Requests
Parameters:
  • repo_name (str, required): Repository name in the format ‘owner/repo’
  • limit (int, optional): Maximum number of PRs to return
  • after (str, optional): Pagination cursor
  • include_raw (bool, optional): Include raw API response
Response:
List Tags
Response:
List Releases
Response:

Ticketing API

The Ticketing API provides a unified interface for ticketing and project management platforms like Jira, Linear, and Asana.
List Tickets
Response:
Filtering and sorting:

Error Handling

The SDK raises exceptions for errors. Always wrap SDK calls in try-except blocks for proper error handling.