Interact with the Hello24x7 API using libraries built for your preferred runtime.
npm install @hello24x7/nodeimport { Hello24x7Client } from '@hello24x7/node';
const client = new Hello24x7Client({ apiKey: 'YOUR_KEY' });
const reply = await client.sendMessage('session_123', 'Hello!');
console.log(reply.text);