stephenthoma / klaviyo-subscribe

Tiny Klaviyo list subscribe utility.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

klaviyo-subscribe npm

Tiny Klaviyo list subscribe utility.

Install

npm i klaviyo-subscribe --save

Usage

import { subscribe } from "klaviyo-subscribe";

const listId = "JFDd6y";
const email = "email@email.com";

subscribe(listId, email, {
  $first_name: "Eric"
  // any optional traits
}).then(response => {});

Sending Custom field data into a list:

import { subscribe } from "klaviyo-subscribe";

const listId = "JFDd6y";
const email = "email@email.com";

subscribe(listId, email, {
  $fields: ["Size", "Type"],
  Size: 10,
  Type: "US Mens"
}).then(response => {});

License

MIT License © Eric Bailey

About

Tiny Klaviyo list subscribe utility.


Languages

Language:JavaScript 100.0%