Hellio Messaging Node.js Package
![License](https://img.shields.io/badge/License-MIT-blue.svg)
A Node.js package for integrating with Hellio Messaging API. This package provides functionalities for sending SMS, generating OTP, performing number lookup, checking delivery reports, checking sms and voice pricing and checking account balance.
Table of Contents
Installation
Describe the installation steps required to set up and run your project. Include any dependencies and prerequisites.
npm install hellio-messaging
Usage
const HellioMessaging = require("hellio-messaging");
const client = new HellioMessaging({
clientId: "yourClientId",
applicationSecret: "yourApplicationSecret",
});
const smsParams = {
senderId: "yourSenderId",
msisdn: "recipientPhoneNumber",
message: "Hello, World!",
};
client
.sendSMS(smsParams)
.then((response) => {
console.log("SMS sent successfully:", response);
})
.catch((error) => {
console.error("Failed to send SMS:", error);
});
const otpParams = {
mobile_number: "recipientPhoneNumber",
timeout: 60,
message: "Your verification code is: {OTP}",
senderId: "yourSenderId",
tokenlength: 6,
recipient_email: "recipientEmail",
messageType: 0,
};
client
.sendOTP(otpParams)
.then((response) => {
console.log("OTP sent successfully:", response);
})
.catch((error) => {
console.error("Failed to send OTP:", error);
});
const verifyParams = {
mobile_number: "recipientPhoneNumber",
otp: "otpCode",
};
client
.verifyOTP(verifyParams)
.then((response) => {
console.log("OTP verification successful:", response);
})
.catch((error) => {
console.error("OTP verification failed:", error);
});
const lookupParams = {
msisdn: "phoneNumber",
reference: "campaignName",
};
client
.numberLookup(lookupParams)
.then((response) => {
console.log("Number lookup result:", response);
})
.catch((error) => {
console.error("Number lookup failed:", error);
});
const routingParams = {
country_code: "GH",
service_name: "sms",
};
client
.getRoutingPrice(routingParams)
.then((response) => {
console.log("Routing price:", response);
})
.catch((error) => {
console.error("Failed to retrieve routing price:", error);
});
const reportParams = {
startDate: "startDate",
endDate: "endDate",
senderId: "yourSenderId",
deliveryStatus: "DELIVRD",
};
client
.checkDeliveryReport(reportParams)
.then((response) => {
console.log("Delivery report:", response);
})
.catch((error) => {
console.error("Failed to check delivery report:", error);
});
client
.checkBalance()
.then((balance) => {
console.log("Account balance:", balance);
})
.catch((error) => {
console.error("Failed to check account balance:", error);
});
Features
For more details on the available methods and parameters, please refer to the Hellio Messaging Node.js package documentation.
Contributing
Contributions are welcome! If you find any issues or have suggestions for improvements, please open an issue or submit a pull request.
License
This project is licensed under the MIT
Feel free to customize the README.md file further to add additional details specific to your project, such as examples, usage guidelines, and any other relevant information.