0.1.30 • Published 2 years ago

httpgrid v0.1.30

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

HTTPgrid (Node.js)

Getting Started

Installation

Install the package with:

npm install httpgrid
# or
yarn add httpgrid

Usage

import { HTTPgrid } from 'httpgrid';

const httpGrid = new HTTPgrid('AUTH_TOKEN');

(async () => {
  const application = await httpGrid.application.create({
    name: 'My Application',
    uid: 'my-application',
  });

  const endpoint = await httpGrid.endpoint.create(application.id, {
    channels: [],
    enabled: true,
    eventTypes: ['user.created'],
    headers: {},
    name: 'My Endpoint',
    uid: 'my-endpoint',
    url: 'https://....',
  });

  const message = await httpGrid.message.create(application.id, {
    channels: [],
    eventType: 'user.created',
    payload: {
      email: 'foo.bar@example.com',
    },
  });
})();
0.1.30

2 years ago

0.1.26

2 years ago

0.1.27

2 years ago

0.1.28

2 years ago

0.1.29

2 years ago

0.1.24

2 years ago

0.1.25

2 years ago

0.1.23

2 years ago