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.8.1

Released: July 2, 2026

New Documentation

  • Feature Gating Guide - Explains the Partner API 402 response and proper handling for plan-gated features by workspace.
  • User Preferences Guide — Users may tailor their Contio experience via preferences which also affect the Partner API.

Contract Changes

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?