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

Released: August 5, 2026

This release adds a Backlog Items API, corrects the advertised item_type values for agenda items, makes updating an agenda item's type actually work, lets you control where an agenda item sits in the agenda, adds presenter names and emails to agenda items, and withdraws the restricted_to_leads agenda-item flag.

What's New — Backlog Items

A new Backlog Items API exposes agenda items that live on a user's backlog rather than on a meeting agenda — items created directly on the backlog or deferred out of a meeting. Seven new endpoints under /v1/partner/user/backlog-items cover the full lifecycle: list, create, read, update, delete, assign to a meeting, and read backlog history. They reuse the existing meetings:read / meetings:write scopes — no new scopes are required.

Method Endpoint Scope Description

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?