Lob's website experience is not optimized for Internet Explorer.
Please choose another browser.

Arrow Up to go to top of page
Sending a Check with Node.js
Engineering
January 18, 2022

Sending a Check with Node.js

Author Avatar
by 
Sid Maestre

Note: This tutorial uses the legacy Node SDK; for a list of updated tools, please reference Lob's API documentation for Checks and see our list of updated SDKs.

Lob’s global print delivery network helps businesses and enterprises simplify and automate their direct mailing, payment, and address verification processes. The link between digital and physical communications gives these organizations greater flexibility, visibility, and accuracy when reaching out to customers.

Lob builds APIs to automate and increase connectivity between the offline and online worlds. We leverage the cloud to help organizations send postcards, letters, checks, and other print mail faster, enabling new growth opportunities through automation.

You can create and send physical payments digitally using the Lob Print & Mail API. The API provides endpoints for creating, retrieving, and canceling checks and fetching a list of previous checks with their status.

You can also use Lob’s robust webhooks to track and automate important check events. Our flexible webhooks can enable you to send automated notifications to the check’s payor, payee, and drawee (the bank or other institution honoring the check).

In this tutorial, we’ll explore Lob’s API features for creating and sending checks to a physical address. We’ll build an Express Node.js application, integrate Lob’s Print & Mail API, then send checks to a physical address.

To proceed you need the following prerequisites installed on your local machine:

You’ll also need to have a basic understanding of Node.js and ES6 syntax. Find the complete application code on Github to follow along.

Setting up the project

Before starting, create your free Lob account. You don’t need to add payment information if you’ll only be testing.

Now, let’s start setting up our project by creating our application’s folder structure.

First, make a folder named “lobchecks.” Open it in an editor of your choice.

Next, create a basic Node.js application using this folder structure:

<script src="https://gist.github.com/lobot/2862bf1594f2e0242e4b39d92d2f3d1b.js"></script>

lobchecks
   src
       controllers
           checks.controller.js
       models
           check.js
       routes
           web.js
       views
           index.hbs
           checks.hbs
           check.hbs
       index.js
       .env
       .babelrc
       README.md

Application views

In the above application folder structure, you see our three view files:

  • index.hbs serves as the application landing page. It contains a form to send checks to Lob.
  • checks.hbs lists all the checks we sent for delivery so far via Lob.
  • check.hbs shows the details of each check we sent to Lob.

Download these 3 files along with the CSS, JavaScript, and images used in this application by cloning the application repository.  Then copy everything in the view folder into your project.

The css folder contains the bootstrap CSS and the application’s custom CSS where we wrote and minified all the application CSS. The js folder contains the jQuery script, which bootstrap requires to aid certain functions like modals and navigation bar toggles.

Initialize your project

We want to manage our dependencies using NPM (node package manager). We start by initializing our project with the command.

<script src="https://gist.github.com/lobot/b912e0d4f89217f1dc25b010800fd0f7.js"></script>


Enter responses to the prompt of hit enter to accept the default value.

package name: lobchecks
version: 1.0.0
description: A sample node project, demonstrating the use of Lob checks.
entry point: ./src/index.js
test command: echo "Error: no test specified" && exit 1
git repository: https://github.com/lob/lob-node-examples.git
keywords: Lob, Checks, Finance
author: your name
license: ISC

Is this OK? yes

Installing packages

Next, install the following packages using the npm install command in your command-line interface (CLI), as this code snippet shows:

<script src="https://gist.github.com/lobot/163a6331e42c97ba18dbc54d991d0719.js"></script>

Since we’ll be using ES6 in the application, we need some Babel packages to transpile our code to plain ES5 JavaScript. Install these packages as dev dependencies using the following command:

<script src="https://gist.github.com/lobot/7e0f1f9d488ccbc56dfa6fc4810bca47.js"></script>

Let’s go over the packages installed in the first code snippet:

  • Express: We’ll use this for our application server.
  • Mongoose: A database tool providing a straightforward, schema-based solution to model application data.
  • CORS: Enables cross-site requests.
  • hbs (Handlebars): Provides our view templating engine.
  • Path module: Provides us with correct absolute file paths within the application.
  • lob: A Node.js SDK enabling us to communicate with a Lob server.
  • Dotenv: For our environmental variables.

Open package.json in your editor and add the following to the script block

<script src="https://gist.github.com/lobot/84f2440b0fce4f8562aceacd80c7410a.js"></script>

Your package.json should look something like this.

<script src="https://gist.github.com/lobot/d2fec46f62f756e72e4adeb1740ba0d5.js"></script>

In the scripts tag in the above code snippet, we configured the application’s runtime parameters for local and production environments.

To configure Babel, we add the following code snippet to the .babelrc file. This enables us to transpile our cutting edge JavaScript into plain ES5 JavaScript that can run in any browser:

<script src="https://gist.github.com/lobot/700975245248f03a1fc3b4a86beb2ddc.js"></script>

Copy and paste the following in the new .babelrc file.

<script src="https://gist.github.com/lobot/cc1ddb044fea85351c587315005dc8aa.js"></script>

Retrieving Lob API credentials

Now, to integrate Lob into our app, we need the API credentials from our Lob account. Retrieve these credentials from your Lob dashboard by clicking on the Settings menu on the sidebar, then clicking on the API Keys tab, as this screenshot illustrates:

Sending a Check with Node.js image 2

The screenshot shows we have API keys for live and test environments. We can use the test keys for development, but we can only use the live key after Lob has verified our payment information.

Although Lob offers subscription packages for all types of businesses, the free trial will work for our example.

Configure Lob API keys

For this project we’ll use environment variables to securely store our API keys.  In the root of your project create a new file .env

<script src="https://gist.github.com/lobot/dee9fb2754228bb749d4a7f2309ab6ce.js"></script>

Open the .env file and add your API keys.

<script src="https://gist.github.com/lobot/3052e9d9bf7ef1cae3d1c8d3a0c01941.js"></script>

Configuring the application

After setting these configurations in the Lob dashboard, we import Express, Mongoose, CORS, and Path. We then configure the app to use Handlebars as its templating engine. Then, we configure it to listen to requests on port 5000.

To do all this, enter the following code in your src/index.js file:

<script src="https://gist.github.com/lobot/7c360d98adfcad7bb72404b6e197157b.js"></script>

Setting up models

Now that we’ve configured the application, let's create and deliver some dummy checks to imaginary addresses using Lob’s Print & Mail API. We’ll first model a check then set up our application routes and controllers.

First, we define a Mongoose database schema with the necessary properties for a check, then export the schema to use in other parts of our application.

Enter the following code in your src/models/check.js file:

<script src="https://gist.github.com/lobot/c9a8f27e246c42983a8d308c79daaf86.js"></script>

Setting up routes

Now that we’ve created our model let’s set up the application routes. To do this, we import Express and declare the router variable in the web.js file. Then, we set up the various routes the application will use and connect them to their appropriate controllers.

To do this, add the following code to your src/routes/web.js file:

<script src="https://gist.github.com/lobot/dddb4af9178afb6dcca6ac2813f48d5a.js"></script>

Setting up controllers

Now, let’s create four functions in the src/controllers/check.controller.js file: createCheck, createCheckPost, getChecks, and getACheck. We’ll examine these functions after we introduce their code.

First, add the following code to the check.controller.js file to create these functions and set up communication between your Node.js application and Lob’s servers:

<script src="https://gist.github.com/lobot/dfa0a2263fe3d3c8962009311e846cda.js"></script>

The createCheck function accepts a GET request and returns a form. The form, visible in the following screenshot, lets us send dummy checks to the Lob server using their API.

The form only captures the essential parameters the Lob Print & Mail API requires for sending checks. You can check out Lob’s documentation for optional parameters to customize the form further.

Sending a Check with Node.js image 3

The createCheckPost function accepts a POST request from the createCheck form, processes it, then sends the content to Lob’s server.

The getChecks and getACheck functions each accept GET requests. The getChecks function returns a list of all the checks created on Lob and displays it on the src/view/checks.hbs page. The getACheck function returns a check’s complete details, selected by check ID, and shows it on the views/check.hbs page, as the screenshot below shows.

Sending a Check with Node.js image 4

Clicking the Cancel Check button cancels this check on Lob if its send_date is still in the future.

To implement this check canceling option, create a cancelCheck function in the src/controllers/check.controller.js file and paste the code snippet below inside the newly-created function:

<script src="https://gist.github.com/lobot/e6a3372e70137dcb4918e1755fa259ce.js"></script>

The above code snippet implements a call to the Lob server to cancel a check with the given check ID. If the request is successful, Lob updates the check and returns the updated information. See the check details page below for some key details.

Sending a Check with Node.js image 5

Next steps

We now have a working Node.js application that uses Lob’s Print & Mail API to create and send checks to a physical address. Although this was a quick demonstration, you can expand the application to integrate Lob webhooks. The webhooks listen to events as Lob processes the check and can automate mail delivery and notify the payor and payee.

Integrating Lob APIs and webhooks into your business processes is hassle-free. Their robust code is compatible with major programming languages, so you can easily configure Lob to suit your needs.

Lob’s simple sign-up process and free developer account help you get started and explore its capabilities. Create a Lob account today, experiment with payments, mailers, and webhooks, and let Lob automate your physical mail and increase the connectivity between your offline and online worlds.

Continue Reading