@naturalcycles/sendgrid-client
TypeScript icon, indicating that this package has built-in type declarations

6.2.5 • Public • Published

BuildStatus npm version Email Notifications Badge

This package is part of a monorepo, please see this README for details.

Client for the Sendgrid v3 Web API

This client library is used by the other SendGrid service packages to make requests to the Sendgrid v3 Web API. You can also use it independently to make custom requests to the SendGrid v3 Web API and other HTTP APIs.

To be notified when this package is updated, please subscribe to email notifications for releases and breaking changes.

Installation

Prerequisites

Obtain an API Key

Grab your API Key from the SendGrid UI.

Setup Environment Variables

Do not hard code your SendGrid API Key into your code. Instead, use an environment variable or some other secure means of protecting your SendGrid API Key. Following is an example of using an environment variable.

Update the development environment with your SENDGRID_API_KEY, for example:

echo "export SENDGRID_API_KEY='YOUR_API_KEY'" > sendgrid.env
echo "sendgrid.env" >> .gitignore
source ./sendgrid.env

Install Package

The following recommended installation requires npm. If you are unfamiliar with npm, see the npm docs. Npm comes installed with Node.js since node version 0.8.x therefore you likely already have it.

npm install --save @naturalcycles/sendgrid-client

You may also use yarn to install.

yarn add @naturalcycles/sendgrid-client

General v3 Web API Usage Example

Please see USAGE.md for all endpoint examples for the SendGrid v3 Web API.

const client = require('@naturalcycles/sendgrid-client');
client.setApiKey(process.env.SENDGRID_API_KEY);
const request = {
  method: 'GET',
  url: '/v3/api_keys'
};
client.request(request)
.then(([response, body]) => {
    console.log(response.statusCode);
    console.log(response.body);
})

Add a Custom Default Header

sgClient.setDefaultHeader('User-Agent', 'Some user agent string');

Change Request Defaults

sgClient.setDefaultRequest('baseUrl', 'https://api.sendgrid.com/');

Overwrite Promise Implementation

You can overwrite the promise implementation you want the client to use. Defaults to the ES6 Promise:

global.Promise = require('bluebird');

Announcements

All updates to this library are documented in our CHANGELOG and releases. You may also subscribe to email release notifications for releases and breaking changes.

Roadmap

If you are interested in the future direction of this project, please take a look at our open issues and pull requests. We would love to hear your feedback.

How to Contribute

We encourage contribution to our libraries (you might even score some nifty swag), please see our CONTRIBUTING guide for details.

Troubleshooting

Please see our troubleshooting guide for common library issues.

About

@naturalcycles/sendgrid-client is guided and supported by the SendGrid Developer Experience Team.

@naturalcycles/sendgrid-client is maintained and funded by SendGrid, Inc. The names and logos for @naturalcycles/sendgrid-client are trademarks of SendGrid, Inc.

SendGrid Logo

Dependents (1)

Package Sidebar

Install

npm i @naturalcycles/sendgrid-client

Homepage

sendgrid.com

Weekly Downloads

1

Version

6.2.5

License

MIT

Last publish

Collaborators

  • kirillgroshkov
  • kribor