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

Arrow Up to go to top of page
Mailing a Postcard with JavaScript Part 3: Tracking Our Postcard with Webhooks
Engineering
December 9, 2021

Mailing a Postcard with JavaScript Part 3: Tracking Our Postcard with Webhooks

Author Avatar
by 
Sid Maestre

This article is the third and final part of our tutorial series working with Lob’s APIs. We’ll continue developing our postcard mailing management application.

We set up our application in part one and enabled our users to create Lob templates for postcards. In part two, we extended our application by allowing our users to enter destinations, verify the addresses, and send the postcard through the API.

In this final article, we’ll enable our users to manage the postcards that they’ve sent through the Lob API. We’ll list the mailings and let the user cancel them if necessary. We’ll also allow our application to let users know when the postcards have been sent and received by their customers. We use Lob’s webhooks function to develop an event-driven element in our application.

To follow along, you should first review the first and second articles. Let’s continue with this tutorial!

Completing our app

We’ll begin by adding a new page to our application. This page will allow us to list the postcards our user has mailed through the Lob API. First, we’ll add a route to our Node application to gather the data that we’ll need.

As we saw in the last tutorial, the Lob SDK for Node has excellent support for postcard operations. The list method takes two parameters:

  • The options object with a limit property, telling the API the maximum number of records we want to return
  • A callback function that receives any error and response following the Lob API query

As we did before, we’ll wrap this function in a promise and reject it if there’s an error. Otherwise, we’ll resolve with the response, using this data to create a reply for our users. Create a new file backend/postcard/list.js and add the following:

<script src="https://gist.github.com/ShariqT/30fd3fa58a41a4b7c1cc4ab333a26f77.js"></script>

The two most crucial pieces of information are the count and postcard array. We’re using the same error logic as in the previous article.

Let’s add the new endpoint to backend/router.js.

<script src="https://gist.github.com/ShariqT/8b585f0a90bbfb733fc02cee2f35db92.js"></script>

Creating the list component

We’ll now head to the front end and create the list component. Create a new file in frontend/src/components/ListPostcards.vue. We’ll add our postcard data first:

<script src="https://gist.github.com/ShariqT/518be3c633f100635a9134d63b1d88e1.js"></script>

We start by creating a ref value initialized as an empty array for our postcards. Once the component has mounted, we query our Node API and assign the data to our referenced value. Then, we use this data in our template.

<script src="https://gist.github.com/ShariqT/4c01452353e2812ff404a81cac0eb713.js"></script>

Here, we list each postcard sent through the API. We will complete this by adding the component to our frontend router. Add the route to the frontend/router/index.js file, so that the file resembles this:

<script src="https://gist.github.com/ShariqT/303b14039edcfde5a08a808c74644624.js"></script>

As you can see, we modified some route names and imported the new component we just made.

Enabling cancellation

In the Lob settings, we can set a cancellation window for any postcard we create. By default, the window is five minutes. Let’s give our users the ability to cancel a postcard if they’re still within the window.

Mailing a Postcard with JavaScript Part 3: Tracking Our Postcard with Webhooks image 2

We’ll handle the backend first. The delete method requires the desired postcard ID. Let’s set up that function. Create a new file backend/postcard/delete.js with the following:

<script src="https://gist.github.com/ShariqT/699a402a7440ca3d98ae631d10657296.js"></script>

We set up the route to encode part of the URL as the id. Then we pass that through as a dynamic parameter. Add the following to the backend/router.js file:

<script src="https://gist.github.com/ShariqT/357a880ddbc49cd6289fa2b58303deab.js"></script>

As we move toward the front end, we want to check if we can cancel the postcard. If we can cancel it, we need a button to trigger that action.

The postcard object has a send_date property. We need to check that it’s currently before that time. In our script tag, we create a canCancel function in the frontend/src/components/ListPostcards.vue file.

Now, if we can cancel our mailing, then we should see a button with that option. Modify the template section in the same file with the following:

<script src="https://gist.github.com/ShariqT/66ef3e2f60d04945dee80478d67264b7.js"></script>

Lastly, we add a cancel function to our script and give our template the ability to use it. First, we add the “cancel” function to frontend/src/components/ListPostcards.vue script section:

<script src="https://gist.github.com/ShariqT/8377413d424d58a8c47fc8d71bb51b6d.js"></script>

Then we add the cancel function to the template section of the same file and add some styling.

<script src="https://gist.github.com/ShariqT/4582a57f60761e9ab0f3adfdb4664c2f.js"></script>

Mailing a Postcard with JavaScript Part 3: Tracking Our Postcard with Webhooks image 3

When we add some styling, we’re good to go!

Tracking the mailing process

Now that our postcards are working their way through the system, we’ll want to track critical events that occur during their journey. From this, we might want to update product owners or marketing managers about potential issues or opportunities.

The Lob API provides a whole host of events to which we can respond. We can create a webhook that will be triggered by any of these events. (See a full list here)

Mailing a Postcard with JavaScript Part 3: Tracking Our Postcard with Webhooks image 4

We can follow our postcard’s journey from creation to delivery. If there are any issues on the way — like if the mail is re-routed or returned, for example — then we can track and respond to these events.

To set up the tracking, we provide our callback URL and select the events we want to subscribe to.

Mailing a Postcard with JavaScript Part 3: Tracking Our Postcard with Webhooks image 5

Lob then calls that URL whenever these events happen in our postcard’s lifecycle. All Lob needs is a timely response to these hooks with a status code in the 2xx range.

We can use a tool like Webhook.site to explore the shape of the callback body. This provides us with a temporary callback URL to see the shape of the webhook body. We can also look at this shape on our own server.

Let’s set up our handler function in our backend. Create a new file in backend/postcard/callback.js and add the following:

<script src="https://gist.github.com/ShariqT/1e78b43458cb50fe91f60682adf42426.js"></script>

We receive plenty of information in the callback body, but we only capture the most helpful information. We get the eventType along with the sender and recipient names. We can switch on the event type to enable this API to integrate with our business operations. Leveraging the power of the Lob API can make the print channel an effective way to keep your customers engaged.

The last step is the add this to the backend/router.js file. We will name this route “/postcard/webhook”.

Conclusion

Throughout this tutorial, we’ve created a front and back-end application to integrate with Lob’s APIs. We’ve leveraged the Node SDK to speed our efforts and provide results for our clients quickly. We’ve saved the project code for you to consult while you’re getting started with Lob.

In the first article of this series, we created our basic application and enabled our users to create a postcard template. In the second article, we expanded our application by creating address forms and enabling address verification, eventually sending our postcard to print. Finally, we expanded the application by providing tracking information for the user’s mailings and allowing them to cancel. Users can now employ this app to create and manage their print campaigns.

You can expand this application even more by enabling a wider variety of print mail types and customizing the app with your company’s logo, for example. Or, you can incorporate Lob’s Print & Mail and Address Verification APIs into a brand new project.

It’s straightforward to integrate Lob’s APIs into your applications and enable your users to take advantage of this tactile marketing channel. Sign up and try Lob’s Print & Mail API today to keep your customers engaged.

Continue Reading