Client SDKs

Interact with the Hello24x7 API using libraries built for your preferred runtime.

Installation

npm install @hello24x7/node

Quick Start Example

import { Hello24x7Client } from '@hello24x7/node';

const client = new Hello24x7Client({ apiKey: 'YOUR_KEY' });
const reply = await client.sendMessage('session_123', 'Hello!');
console.log(reply.text);