
Security News
AGENTS.md Gains Traction as an Open Format for AI Coding Agents
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
@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.
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
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.