Aydrian Howard
August 12, 2020

Table of contents
During our August 5th Courier Live, I was joined by Riley Napier, one of our Sr. Software Engineers. Together we updated the Courier Node.js SDK to support our new Idempotent Requests feature.
Check out the video below to watch us:
Be sure to Like the video and Subscribe to our YouTube channel.
Idempotency allows for safely retrying requests without accidentally performing the same operation twice. Imagine you were sending a notification using Courier and due to a network connection error, no response was received. At this point, you can't be sure if the notification was sent or not. No response means no messageId returned. An idempotent send would allow you to send the request again and if the message wasn't sent, it would send it. If it were sent, you would receive the messageId from the previous send. Courier supports idempotent requests for all POST requests by providing a unique key in the Idempotency-Key header. Any requests sent with the same idempotency key will be idempotent for as long as that key exists in our system. Learn more about how we handle Idempotent Requests in our API Reference documentation.
Once the changes Riley and I made are released, you'll be able to provide an idempotencyKey value in an optional config object for each function that sends a POST request.
Copied!
import { CourierClient } from "@trycourier/courier";import uuid4 from "uuid4";const courier = CourierClient();const idempotencyKey = uuid4();async function run() {const { messageId } = await courier.send({eventId: "DOOF_ALERT",recipientId: "AGENT-P-007",profile: {email: "perry@owca.org",phone_number: "555-867-5309"},data: {location: "Tri-State Area"inator: "Shrinkinator"}},{idempotencyKey});console.log(messageId);}run();
Is there something you’d like to see us do using Courier? Let us know and it might be the subject of our next Courier Live. We stream a new Courier Live every Wednesday at noon Pacific.
Follow us on Twitch to be notified when we go live!
-Aydrian

Decode: Live Workshops to Build Exceptional Notification Experiences
Live coding workshops to build exceptional notification experiences for developers.
By Shreya Gupta
February 02, 2023

No Code Notifications powered by Segment
Danny Douglass from our engineering team joined me for our August 12th Courier Live. We discussed a No Code approach to sending notifications using Courier as a Segment destination. It took less than 30 minutes from setup to sending our first notification.
By Aydrian Howard
August 19, 2020

Branding and white-labeling email notifications
During our July 29th Courier Live, I was joined by our Head of Customer Success, Nate Munger. Together we discussed our new Brands feature set and walked through using it to send an email.
By Aydrian Howard
August 05, 2020
© 2025 Courier. All rights reserved.