
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
@termii/node
Advanced tools
Nodejs SDK for Termii messaging platform written in typescript
Node v16 and higher is required. To make sure you have them available on your machine, try running the following command.
node -v
To get started with this SDK, create an account on Termii if you haven't already. You can then retrieve your API keys from your Termii dashboard.
This SDK can be installed with npm or yarn or pnpm.
# using npm
npm install termii/node
# using yarn
yarn install termii/node
# using pnpm
pnpm add termii/node
Import and Initialize the library
// use modules
import { Termii } from 'termii/node';
// use cjs
const { Termii } = require('termii/node')
const termii = new Termii('YOUR_API_KEY');
Instantiate the Termii class
const termii = new Termii('YOUR_API_KEY');
Warning Be sure to keep your API Credentials securely in environment variables.
A Sender ID is the name or number that identifies the sender of an SMS message.
// import the sender id response interface from the sdk
import { type ISenderIDResponse } from 'termii/node';
// returns the first 15 sender ids
const senderIds = await termii.message.fetchSenderIDs()
// to get the next page of sender ids
const senderIds = await termii.message.fetchSenderIDs(2)
console.log(senderIds) // ISenderIDResponse
Find more details about the parameters and response for the above method here
// import the request sender id interfaces from the sdk
import type { IRequestSenderID, IRequestSenderIDResponse } from 'termii/node';
const payload: IRequestSenderID = {
sender_id: 'acme',
usecase: 'Testing! Working!! This is it!!!',
company: 'Metalabs',
}
const response = await termii.message.requestSenderID(payload)
console.log(response) // IRequestSenderIDResponse
Find more details about the parameters and response for the above method here
This API allows businesses send text messages to their customers across different messaging channels.
// import the message interfaces from the sdk
import type { ISendMessage, ISendMessageResponse } from 'termii/node';
const payload: ISendMessage = {
to: "2347880234567",
from: "talert",
sms: "Hi there, testing Termii",
type: "plain",
channel: "generic",
api_key: "Your API Key",
media: {
url: "https://media.example.com/file",
caption: "your media file"
}
}
const response = await termii.message.sendMessage(payload)
console.log(response) // ISendMessageResponse
Find more details about the parameters and response for the above method here
// import the message interfaces from the sdk
import type { ISendBulkMessage, ISendBulkMessageResponse } from 'termii/node';
const payload: ISendBulkMessage = {
to: ["23490555546", "23423490126999","23490555546"],
from: "talert",
sms: "Hi there, testing Termii",
type: "plain",
channel: "generic"
}
const response = await termii.message.sendBulkMessage(payload)
console.log(response) // ISendBulkMessageResponse
Find more details about the parameters and response for the above method here
This allows businesses send messages to customers using Termii's auto-generated messaging numbers that adapt to customers location.
// import the number interfaces from the sdk
import type { ISendMessageWithNumber, ISendMessageWithNumberResponse } from 'termii/node';
const payload: ISendMessage = {
to: "23490555546",
sms: "Hi there, testing Termii"
}
const response = await termii.message.sendMessageWithNumber(payload)
console.log(response) // ISendMessageWithNumberResponse
Find more details about the parameters and response for the above method here
This helps businesses set a template for the one-time-passwords (pins) sent to their customers via whatsapp or sms.
// import the template interfaces from the sdk
import type { IDeviceTemplate, IDeviceTemplateResponse } from 'termii/node';
const payload: IDeviceTemplate = {
phone_number: '+1234567890',
device_id: 'device123',
template_id: 'template456',
data: {
product_name: 'Dummy Product',
otp: 123456,
expiry_time: '2023-11-16T12:00:00Z',
},
}
const response = await termii.message.sendMessageWithTemplate(payload)
console.log(response) // IDeviceTemplateResponse
Find more details about the parameters and response for the above method here
Create, view & manage phonebooks using these APIs. Each phonebook can be identified by a unique ID, which makes it easier to edit or delete a phonebook.
// import the phonebook interfaces from the sdk
import type { IFetchPhonebooksResponse } from 'termii/node';
const response = await termii.message.fetchPhonebooks()
// to fetch another page - pass the page number to the method
const response = await termii.message.fetchPhonebooks(2)
console.log(response) // IFetchPhonebooksResponse
Find more details about the parameters and response for the above method here
// import the phonebook interfaces from the sdk
import type { IPhonebookResponse, IPhonebook, } from 'termii/node';
const payload: IPhonebook = {
phonebook_name: 'Test',
description: 'Phonebook for test',
}
const response = await termii.message.createPhonebook(payload)
console.log(response) // IPhonebookResponse
Find more details about the parameters and response for the above method here
// import the phonebook interfaces from the sdk
import type { IPhonebookResponse, IPhonebook, } from 'termii/node';
const payload: IPhonebook = {
phonebook_name: 'Update testTest',
description: 'Updated Phonebook for test',
}
const response = await termii.message.updatePhonebook('phonebook_id', payload)
console.log(response) // IPhonebookResponse
Find more details about the parameters and response for the above method here
// import the phonebook interfaces from the sdk
import type { IPhonebookResponse } from 'termii/node';
const response = await termii.message.deletePhonebook('phonebook_id')
console.log(response) // IPhonebookResponse
Find more details about the parameters and response for the above method here
Contacts API allows you manage (i.e. edit, update, & delete) contacts in your phonebook.
// import the contact interfaces from the sdk
import type { IFetchContactsResponse } from 'termii/node';
const response = await termii.message.fetchContacts('phonebook_id')
// to fetch another page - pass the page number to the method after the phonebook ID
const response = await termii.message.fetchContacts('phonebook_id', 2)
console.log(response) // IFetchContactsResponse
Find more details about the parameters and response for the above method here
// import the contact interfaces from the sdk
import type { ICreateContact, ICreateContactResponse } from 'termii/node';
const payload: ICreateContact = {
phone_number: '8123696237',
email_address: 'test@gmail.com',
first_name: 'test',
last_name: 'contact',
company: 'Termii',
country_code: '234',
}
const response = await termii.message.createContact('phonebook_id', payload)
console.log(response) // ICreateContactResponse
Find more details about the parameters and response for the above method here
// import the contact interfaces from the sdk
import type { IDeleteContactResponse } from 'termii/node';
const response = await termii.message.deleteContact('contact_id')
console.log(response) // IDeleteContactResponse
Find more details about the parameters and response for the above method here
Using the campaign APIs, you can view, manage and send a campaign to a phonebook.
// import the campaign interfaces from the sdk
import type { IFetchCampaignsResponse } from 'termii/node';
const response = await termii.message.fetchCampaigns()
// to fetch another page - pass the page number to the method
const response = await termii.message.fetchCampaigns(2)
console.log(response) // IFetchCampaignsResponse
Find more details about the parameters and response for the above method here
// import the campaign interfaces from the sdk
import type { fetchCampaignHistoryResponseData } from 'termii/node';
const response = await termii.message.fetchCampaigns('campaign_id')
// to fetch another page - pass the page number to the method after campaign ID
const response = await termii.message.fetchCampaigns('campaign_id', 2)
console.log(response) // fetchCampaignHistoryResponseData
Find more details about the parameters and response for the above method here
// import the campaign interfaces from the sdk
import type { ISendCampaign, ISendCampaignResponse } from 'termii/node';
const payload: ISendCampaign = {
api_key: "Your API KEY",
country_code: "234",
sender_id: "Termii",
message: "Welcome to Termii.",
channel: "generic",
message_type: "Plain",
phonebook_id: "2d9f4a02-85b8-45e5-9f5b-30f93ef472e2",
delimiter: ",",
remove_duplicate: "yes",
campaign_type: "personalized",
schedule_time: "30-06-2021 6:00",
schedule_sms_status: "scheduled"
}
const response = await termii.message.sendCampaign(payload)
console.log(response) // ISendCampaignResponse
Find more details about the parameters and response for the above method here
FAQs
Nodejs SDK wrapper for Termii API written with Typescript support
The npm package @termii/node receives a total of 32 weekly downloads. As such, @termii/node popularity was classified as not popular.
We found that @termii/node demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.