Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
autopilot-sdk
Advanced tools
This is an un-official Node SDK for interfacing the Autopilot API. You can view the REST api documentation here Some cool features include:
{'Foo Bar': true}
will re-format to {'boolean--Foo--Bar': true}
> npm i -S autopilot-sdk
import Autopilot from 'autopilot-sdk';
const autopilot = new Autopilot('<API_KEY>');
//=> autopilot instance
The Autopilot instance has instance members that access the scopes of the API. Namely: contacts
, lists
, journeys
, segments
, etc... Below is the list of the methods for all the scopes.
All calls on the contact/contacts scope must have a contact_id
or email
member parameter. Find more in the Autopilot documentation.
Parameters:
Return Value: Returns a promise that resolves to:
//=> { contact_id: '<id>' }
import Autopilot from 'autopilot-sdk';
const autopilot = new Autopilot(<EXAMPLE_API_KEY>);
const contactData = {
'email': 'johndoe@example.com',
'Full Name': 'John Doe',
'Gender': 'male',
'age': 35,
};
await autopilot.contacts.save(contactData);
//=> { contact_id: 'person_32941749279223008202071' }
FAQs
Node SDK for Autopilot
The npm package autopilot-sdk receives a total of 3 weekly downloads. As such, autopilot-sdk popularity was classified as not popular.
We found that autopilot-sdk 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
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.