Getting Started
Installation
Install the opntasks CLI and SDK.
Installation
CLI
npm install -g opntasksConfigure your API endpoint and key:
opntasks config set api-url https://api.opntasks.com
opntasks config set api-key your-api-key-hereSDK (Node.js)
npm install @opntasks/sdkimport { OpntasksClient } from '@opntasks/sdk';
const client = new OpntasksClient({
baseUrl: 'https://api.opntasks.com',
apiKey: process.env.OPNTASKS_API_KEY,
});