Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
@zenvia/zenvia-sms-core
Advanced tools
Full and official implementation of Zenvia SMS API for NodeJS.
Full and official implementation of Zenvia SMS API, send, monitor status and receive SMS from clients with this module.
npm install @zenvia/zenvia-sms-core
let zcs = require('@zenvia/zenvia-sms-core').callbacksServer;
zcs.startServer(81);
zcs.events.on('event', (data)=>{
console.log(data);
});
/**
* Available methods:
* setCredentials(account, password) - Set API Credentials
* sendSMS(payload) - Send unique and multiple SMS
* getSMSStatus(sms_id) - Get SMS status by ID
* getSMSReceivedList() - Get received SMS list
* getSMSReceivedListSearch(start_date, end_date) - Get received SMS list filtered by start and end date
* cancelScheduledSMS(sms_id) - Cancel scheduled SMS by id
*
*/
const zapi = require('@zenvia/zenvia-sms-core').api;
zapi.setCredentials('account', 'password');
/* Send unique short and long SMS example
*/
zapi.sendSMS({
sendSmsRequest: {
from: "Zenvia",
to: "5551999999999",
schedule: null,
msg: "Hello Zenvia from NodeJS!!!",
callbackOption: "ALL",
id: '001',
aggregateId: "002"
}
})
.then((res) => {
console.log(res);
})
.catch((err) => {
console.error(err);
});
_code_examples/
and _payload_examples
in this project.run npm install
.
for success send SMS tests case in api, fill zenvia_phonenumber
, zenvia_account
, zenvia_password
on env variables.
run npm test
.
FAQs
Full and official implementation of Zenvia SMS API for NodeJS.
The npm package @zenvia/zenvia-sms-core receives a total of 70 weekly downloads. As such, @zenvia/zenvia-sms-core popularity was classified as not popular.
We found that @zenvia/zenvia-sms-core 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.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.