Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
notifyre-nodejs-sdk
Advanced tools
The official Notifyre NodeJS SDK library for use with the Notifyre API
A Node.js package for Notifyre Public API.
npm install notifyre-nodejs-sdk
The Notifyre API uses API tokens to authenticate requests.
If you don't have a Notifyre account already, you’ll need to create one here in order to use the API.
For more info, visit API docs website.
const { NotifyreAPI } = require('notifyre-nodejs-sdk');
const notifyreAPI = new NotifyreAPI('apiKey');
const faxService = notifyreAPI.getFaxService();
/// Retrieve list of fax numbers
faxService
.listFaxNumbers()
.then(function (response) {
// handle success
console.log(response);
})
.catch(function (error) {
// handle error
console.log(error);
});
// The request above could also be done using async/await
async function listFaxNumbers() {
try {
const response = await faxService.listFaxNumbers();
console.log(response);
} catch (error) {
console.log(error);
}
}
Name | Description |
---|---|
getFaxService | Returns fax service instance |
getSmsService | Returns SMS service instance |
getContactsService | Returns Contacts service instance |
Name | Description |
---|---|
listSentFaxes | Returns sent faxes |
submitFax | Send fax |
downloadSentFax | Returns sent fax as base64 string |
listCoverPages | Returns cover pages |
listReceivedFaxes | Returns received faxes |
downloadReceivedFax | Returns received fax as base64 string |
listFaxNumbers | Returns fax numbers |
Name | Description |
---|---|
listSentSms | Returns sent SMS |
submitSms | Send SMS |
getSms | Returns sent SMS details |
listSmsReplies | Returns cover pages |
getSmsReply | Returns received SMS details |
listSmsNumbers | Returns SMS numbers and sender IDs |
Name | Description |
---|---|
downloadMmsReply | Returns list of mms documents in message in Base64 string format |
Name | Description |
---|---|
listContacts | Returns address book contacts |
createContact | Create address book contact |
updateContact | Update address book contact |
deleteContacts | Delete address book contacts |
getContact | Returns address book contact details |
addContactsToGroups | Adds address book contacts to address book groups |
removeContactsFromGroup | Remove address book contacts from address book group |
listGroups | Returns address book groups |
createGroup | Create address book group |
updateGroup | Update address book group |
deleteGroups | Delete address book groups |
Name | Description |
---|---|
verifySignature | Verifies Webhook signature |
npm run test
npm run test:watch
FAQs
The official Notifyre NodeJS SDK library for use with the Notifyre API
The npm package notifyre-nodejs-sdk receives a total of 11 weekly downloads. As such, notifyre-nodejs-sdk popularity was classified as not popular.
We found that notifyre-nodejs-sdk demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.