npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

braze-api

v2.7.1

Published

Track users, send messages, export data, and more with Braze API.

Downloads

40,080

Readme

braze-api

NPM

NPM version build codecov NPM downloads

Node.js library for Braze. See docs and demo. The types are from Braze's Postman collection.

Quick Start

import { Braze } from 'braze-api'

const braze = new Braze('YOUR_API_URL', 'YOUR_API_KEY')

await braze.messages.send({
  external_user_ids: ['your_external_user_id'],
  messages: {
    email: {
      app_id: 'your_app_id',
      from: 'Company <[email protected]>',
      email_template_id: 'your_email_template_id',
    },
  },
})

Documentation

Prerequisites

Installation

NPM:

npm install braze-api

Yarn:

yarn add braze-api

Usage

The package needs to be configured with your account's REST endpoint and API key:

const { Braze } = require('braze-api')

const braze = new Braze('YOUR_API_URL', 'YOUR_API_KEY')

The same can be done with ES Modules:

import { Braze } from 'braze-api'

const braze = new Braze('YOUR_API_URL', 'YOUR_API_KEY')

API URL

Use the REST endpoint provisioned to your account when you log in to the dashboard:

| Instance | REST Endpoint | | -------- | ----------------------------- | | US-01 | https://rest.iad-01.braze.com | | US-02 | https://rest.iad-02.braze.com | | US-03 | https://rest.iad-03.braze.com | | US-04 | https://rest.iad-04.braze.com | | US-05 | https://rest.iad-05.braze.com | | US-06 | https://rest.iad-06.braze.com | | US-08 | https://rest.iad-08.braze.com | | EU-01 | https://rest.fra-01.braze.eu | | EU-02 | https://rest.fra-02.braze.eu |

API Key

The API key can be created in your Braze dashboard.

API Methods

The library supports the following Braze API endpoints. Pull requests are welcome!

Campaigns

  • [ ] /campaigns/data_series
  • [ ] /campaigns/details
  • [x] /campaigns/list
  • [ ] /sends/data_series

Canvas

  • [ ] /canvas/data_series
  • [ ] /canvas/data_summary
  • [ ] /canvas/details
  • [x] /canvas/list

Catalogs

  • [ ] DELETE /catalogs/{catalog_name}/items
  • [ ] PATCH /catalogs/{catalog_name}/items
  • [ ] POST /catalogs/{catalog_name}/items
  • [ ] PUT /catalogs/{catalog_name}/items/
  • [ ] DELETE /catalogs/{catalog_name}/items/{item_id}
  • [x] GET /catalogs/{catalog_name}/items/{item_id}
  • [x] GET /catalogs/{catalog_name}/items
  • [ ] PATCH /catalogs/{catalog_name}/items/{item_id}
  • [ ] POST /catalogs/{catalog_name}/items/{item_id}
  • [ ] PUT /catalogs/{catalog_name}/items/{item_id}
  • [ ] DELETE /catalogs/{catalog_name}
  • [x] GET /catalogs
  • [ ] POST /catalogs

Content Blocks

  • [x] /content_blocks/list
  • [x] /content_blocks/info
  • [ ] /content_blocks/create
  • [ ] /content_blocks/update

Custom Events

  • [ ] /events/list
  • [ ] /events/data_series

Email List

  • [ ] /email/hard_bounces
  • [ ] /email/unsubscribes
  • [x] /email/blacklist
  • [ ] /email/status
  • [x] /email/bounce/remove
  • [x] /email/spam/remove

Email Templates

  • [x] /templates/email/list
  • [x] /templates/email/info
  • [x] /templates/email/create
  • [x] /templates/email/update

KPI

  • [ ] /kpi/new_users/data_series
  • [ ] /kpi/dau/data_series
  • [ ] /kpi/mau/data_series
  • [ ] /kpi/uninstalls/data_series

News Feed

  • [ ] /feed/data_series
  • [ ] /feed/details
  • [ ] /feed/list

Purchases

  • [ ] /purchases/product_list
  • [ ] /purchases/quantity_series
  • [ ] /purchases/revenue_series

Preference Center

  • [ ] /preference_center/v1/{preferenceCenterExternalId}/url/{userId}
  • [ ] /preference_center/v1/list
  • [ ] /preference_center/v1/{preferenceCenterExternalId}
  • [ ] /preference_center/v1
  • [ ] /preference_center/v1/{preferenceCenterExternalId}

Schedule Messages

  • [x] /messages/scheduled_broadcasts
  • [x] /messages/schedule/delete
  • [x] /canvas/trigger/schedule/delete
  • [x] /campaigns/trigger/schedule/delete
  • [x] /messages/schedule/create
  • [x] /campaigns/trigger/schedule/create
  • [x] /messages/schedule/update
  • [x] /campaigns/trigger/schedule/update
  • [x] /canvas/trigger/schedule/create
  • [x] /canvas/trigger/schedule/update

SCIM

  • [ ] DELETE /scim/v2/Users/{id}
  • [ ] GET /scim/v2/Users?filter={[email protected]}
  • [ ] GET /scim/v2/Users/{id}
  • [ ] POST /scim/v2/Users
  • [ ] PUT /scim/v2/Users/{id}

Segments

  • [ ] /segments/list
  • [ ] /segments/data_series
  • [ ] /segments/details
  • [ ] /sessions/data_series

Send Messages

  • [x] /sends/id/create
  • [x] /messages/send
  • [x] /transactional/v1/campaigns/{{CAMPAIGN_ID}}/send
  • [x] /campaigns/trigger/send
  • [x] /canvas/trigger/send

SMS

  • [ ] /sms/invalid_phone_numbers
  • [ ] /sms/invalid_phone_numbers/remove

Subscription Groups

  • [x] /subscription/status/get
  • [x] /subscription/user/status
  • [x] /subscription/status/set
  • [x] /v2/subscription/status/set

User Data

  • [x] /users/export/global_control_group
  • [x] /users/export/ids
  • [x] /users/export/segment
  • [x] /users/external_ids/remove
  • [x] /users/external_ids/rename
  • [x] /users/alias/new
  • [x] /users/delete
  • [x] /users/identify
  • [x] /users/track
  • [x] /users/alias/update
  • [x] /users/merge

Live Activity

  • [ ] /messages/live_activity/update

Contributing

Contributions are welcome! Check out the guide. 👋

License

MIT