opntasks
Getting Started

Installation

Install the opntasks CLI and SDK.

Installation

CLI

npm install -g opntasks

Configure your API endpoint and key:

opntasks config set api-url https://api.opntasks.com
opntasks config set api-key your-api-key-here

SDK (Node.js)

npm install @opntasks/sdk
import { OpntasksClient } from '@opntasks/sdk';

const client = new OpntasksClient({
  baseUrl: 'https://api.opntasks.com',
  apiKey: process.env.OPNTASKS_API_KEY,
});

On this page