Skip to content

SDK Downloads

Download the Contio Partner SDK to integrate your application with MeetingOS.

The easiest way to install the SDK is via npm:

npm install @contio/partner-sdk

Source Code

The SDK is open source and available on GitHub:

View on GitHub

Direct Download

NPM is Recommended

We recommend installing via npm for automatic updates and dependency management. Direct downloads are provided for offline or air-gapped environments.

If you prefer to download the SDK directly, you can download the latest release from the GitHub Releases page.

Package Contents

The SDK package includes:

@contio/partner-sdk/
├── dist/               # Compiled JavaScript (ES2022)
│   ├── index.js        # Main entry point
│   ├── index.d.ts      # TypeScript definitions
│   └── ...
├── README.md           # Quick start guide
└── package.json        # Package manifest

Latest Release

Version 1.11

Released: September 3, 2026

This release adds a meeting search endpoint to the Partner User API with the same full-text behavior as in-product search, and tightens webhook auto-disable so a misconfigured endpoint is disabled promptly.

Behavior change — Webhook auto-disable thresholds

Contio now disables webhook delivery for your app (webhook_enabled: false) when either of the following is true:

  • 10 consecutive failed delivery attempts. Every failed HTTP attempt counts, including retries of the same event. Previously only deliveries that had exhausted all retries counted, and 50 of them were required.
  • 72 hours without a successful delivery while failures are being recorded. This now also applies to endpoints that have never delivered successfully — the window is measured from the first failure of the current streak.

View full release history

Installation from Tarball

If you have a .tgz file (from GitHub releases or local build):

# Install from local file
npm install ./contio-partner-sdk-1.6.0.tgz

# Or add to package.json
{
  "dependencies": {
    "@contio/partner-sdk": "file:./contio-partner-sdk-1.6.0.tgz"
  }
}

Verify Installation

After installation, verify the SDK is working:

import { ContioPartnerSDK } from '@contio/partner-sdk';

// Should log available methods
console.log(ContioPartnerSDK.forUser);
console.log(ContioPartnerSDK.forAdmin);

OpenAPI Specification

For API-first development or code generation:

Support

Having issues with installation?