Socket
Book a DemoInstallSign in
Socket

brex

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

brex

This project is an unofficial JS wrapper for the Brex API, maintained by [Slingshot](https://github.com/slingshot). We use this library in production for managing payouts to artists on our platform.

0.5.1
latest
Source
npmnpm
Version published
Maintainers
1
Created
Source

Brex API Wrapper

This project is an unofficial JS wrapper for the Brex API, maintained by Slingshot. We use this library in production for managing payouts to artists on our platform.

This library is built in TypeScript and comes with built-in types. All requests use isomorphic-unfetch and should work both in Node and in browsers.

Install the package to get started:

npm install brex --save
# OR
yarn add brex

The full wrapper API reference can be found at slingshot.github.io/brex.

This is an UNOFFICIAL LIBRARY and not created, maintained, or in any way connected with Brex Inc. or any associated entity. "Brex" is a registered trademark of Brex, Inc. Use of the Brex API is subject to the Brex Access Agreement.

The nature of the Brex API means that most usage will involve dealing with highly sensitive financial data and transfers. You are entirely responsible for ensuring that proper security measures are implemented to protect all data.

This wrapper library is offered under the MIT license (see the LICENSE file for full text).

Basic usage

Initialize an API instance using a user token, which you can generate in your Brex account dashboard (or via OAuth).

import { Brex } from 'brex';

const brex = new Brex('{{YOUR USER TOKEN HERE}}');

You can then access any endpoint using the request method, which wraps the API using your provided token. For example:

const result = await brex.request({
    endpoint: 'vendors',
    method: 'GET',
    query: {
        name: 'Sanil Chawla',
    },
});

You can pass in a query, body, and/or idempotencyKey depending on your request. See the ApiRequestOptions interface for more details.

What's coming soon?

Version 1.0.0 will include a true JS wrapper that is semantically easier to use and handles typing across requests (for example, brex.vendors.list() or brex.users.invite({...})).

This functionality will be rolled out incrementally and tracked below. The brex.request() method will always remain accessible as well. Contributions are always welcome.

Payments API

✅ Vendors

  • brex.vendors.list()
  • brex.vendors.create()
  • brex.vendors.get()
  • brex.vendors.update()
  • brex.vendors.delete()

✅ Transfers

  • brex.transfers.list()
  • brex.transfers.create()
  • brex.transfers.get()

Team API

Users

  • brex.users.list()
  • brex.users.invite()
  • brex.users.getCurrent()
  • brex.users.get()
  • brex.users.update()
  • brex.users.getLimit()
  • brex.users.setLimit()

Locations

  • brex.locations.list()
  • brex.locations.create()
  • brex.locations.get()

Departments

  • brex.departments.list()
  • brex.departments.create()
  • brex.departments.get()

Cards

  • brex.cards.list()
  • brex.cards.create()
  • brex.cards.get()
  • brex.cards.update()
  • brex.cards.lock()
  • brex.cards.getNumber()
  • brex.cards.terminate()
  • brex.cards.unlock()

Companies

  • brex.companies.get()

Transactions API

Transactions

  • brex.transactions.listPrimaryCard()
  • brex.transactions.listCash()

✅ Accounts

  • brex.accounts.listCardAccounts()
  • brex.accounts.listPrimaryCardStatements()
  • brex.accounts.listCashAccounts()
  • brex.accounts.listCashStatements()

Cleanup & docs

  • Contribution guidelines
  • Jest tests (probably by providing a key in env; CI if possible, but could be tough without a test/sandbox API key)
  • Documentation and examples (possibly just a modified/enhanced version of the auto-generated TypeDoc docs)

FAQs

Package last updated on 06 Jan 2022

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.