Shreya Gupta
September 27, 2022

Table of contents
GitHub Repository: https://github.com/shreythecray/infiltration
The hackathon ends soon, and we are giving away over $1K in prizes! Join us in building a cool project and winning any of the following prizes. 🏆
Additionally, everyone who submits a project successfully integrating the Courier API will receive a $20 Amazon gift card! Submissions close on September 28th. Register now to submit this project for a chance to win some cool prizes.
Register for the Hackathon: https://courier-hacks.devpost.com/
Not sure where to start? In this tutorial, we will create a Discord bot that sends daily automated messages encrypted in Morse code with Node.js and the Courier API.
We are secret agents, and we previously built an application to send secret messages encrypted in Morse code to communicate with our spy network. Learn more >
Last time, headquarters told us that one of our spies had leaked sensitive, top-secret information to our enemies, so we built a lie detector that alerted our spy network when we identified the mole. We used Azure's Cognitive Services to perform facial recognition on everyone on our team and Courier to broadcast the identity of the mole to our spy network. Learn more >
We have successfully identified the mule and have alerted our spy network! In an unfortunate turn of events, the mule happens to be our partner, Agent X, and now we are being suspected as a traitor as well. Since we are highly skilled, Headquarters knows that the Lie Detector won’t work on us, but we have been placed off-duty until we can prove that we are innocent.
Before we were removed from duty, we were able to use the Lie Detector to find out that the enemy had thousands of civilians under control in a secret Discord server. The civilians are being brainwashed with enemy propaganda every day. To prove our innocence, we decide to go undercover and infiltrate the enemy’s Discord server. With the help of Agent X, we have been added to the server as an administrator. Our plan is to create and install a Discord bot that automates encrypted messages to the civilians and alerts them about the situation so that they can escape.
Today, we will be building this with Node.js. If you’re curious about how to build this project using Ruby, cURL, Powershell, Go, PHP, Python, or Java, let us know: https://discord.com/invite/courier. You can also access code for these within our API reference. Let’s get started:
Install dotenv npm package to store variables: npm install dotenv --save
Import and configure dotenv by adding to top of index.js: require("dotenv").config();
Similarly, install node-fetch npm package to make API calls: npm install node-fetch@2
Import and configure node-fetch by adding to top of index.js: const fetch = require("node-fetch");
bot scopeView Channels, Send Messages, and Read Message HistoryBack in the Discord server, right click on the channel and copy the channel ID (bottom of list). Add this as the value of channelID in the .env file within the project and save it as a variable within the index.js file:
Copied!
const channelID = process.env.channelID
Now, Courier has access to sending messages to this server as the bot.

Run while you can. You can find shelter here: https://discord.com/invite/courier.Copy the notification template ID from the notification’s settings and add it as the value of templateID in the .env file within the project and save it as a variable within the index.js file:
Copied!
const templateID = process.env.templateID

Create a test event and replace the channel_id in the JSON with the channel_id we received from Discord earlier.
Copied!
{"courier": {},"data": {},"profile": {"discord": {"channel_id": "768866348853383208"}},"override": {}}
Test a message to ensure that the Discord provider integration is working correctly.

{secretMessage} so that, later, we can edit the message from our code directly.
Create an asynchronous function called encryptMessage(), which takes originalMessage as a parameter. This function will call the Morse API, which will allow us to translate any message from English to Morse code. The enemy will have to spend more time and resources into decrypting our messages, which will give our civilians time to escape from the server.
Copied!
async function encryptMessage(originalMessage) {}
Let’s define the GET API call options:
Copied!
const morseOptions = {method: 'GET',headers: {Accept: 'application/json','Content-Type': 'application/json'}};
We need to attach the originalMessage function parameter to the Morse API endpoint:
Copied!
const morseEndpoint = "https://api.funtranslations.com/translate/morse.json?text="+originalMessage
We need to be able to access the translation from this API call in the body of the Courier API call. To call the API, we can use node-fetch as we did before.
morseResponse, which will hold the entire response from this call.morseResponseJSON so that we can read it within our code.encryptedMessage.Return encryptedMessage so that we can call this function to access it elsewhere.
Copied!
const morseResponse = await fetch(morseEndpoint, morseOptions);const morseResponseJSON = await morseResponse.json();const encryptedMessage = morseResponseJSON.contents.translated;console.log(encryptedMessage);return encryptedMessage;

NOTE: The Morse API has a rate limit, which may give you an error if you run it too many times within the hour. In this case, you will have to wait for some time before continuing.
Check out the Automations API reference >
Create a new asynchronous function called runDiscordAutomation(), which will call the encryptMessage() function to translate a message and use the Courier API to automatically send messages to the enemy Discord server everyday.
Copied!
async function runDiscordAutomation() {}
Before we can run our message through the Morse translation API, we need to ensure that it is in the correct format, with all spaces converted into their URL encoding, %20 as shown below. We can call encryptMessage() with originalMessage as a parameter to translate it. encryptedMessage will evaluate as the translated message.
Copied!
const originalMessage = "run%20while%20you%20can%20you%20can%20find%20shelter%20here";const encryptedMessage = await encryptMessage(originalMessage);
Add the link to the safe server in the notification template within the designer: “https://discord.com/invite/courier”
Let’s define the Courier Automation endpoint and options. Here we will need access to our Courier API Key, which can be found within the Courier Settings page. Save the first value in the .env file as apiKey and access it in this file as process.env.apiKey.
Copied!
const automationsEndpoint = "https://api.courier.com/automations/invoke"const courierOptions = {method: "POST",headers: {Accept: "application/json","Content-Type": "application/json",Authorization: 'Bearer ' + process.env.apiKey},body: JSON.stringify({//next steps}),};
The body object within the options will encompass two objects: automation and data
Copied!
body: JSON.stringify({"automation": {},"data": {}}),
The automation object will include a steps array, which will consist of all steps required for the automation. Our automation consists of reminders that are sent once a day - in this case we will be adding three steps: a send step, a delay, and another send step (so on).
Copied!
"automation": {"steps": [],},
action (send, delay, cancel, etc.) and message. The message consists of the notification template ID (we saved this in the .env file earlier) and information about where this message is being sent. A Discord message requires either a user_id or a channel_id. In order to reach as many innocent civilians as possible, as quickly as possible, we will directly send messages in a channel.This is what the send and delay steps would look like:
Copied!
{"action": "send","message": {"template": templateID,"to": {"discord": {"channel_id": process.env.channelID}}}},
Copied!
{"action": "send","duration":"1 day"},
The data object would need to contain the encryptedMessage:
Copied!
"data": {"secretMessage": encryptedMessage}
1 minuteFinally, we can use node-fetch again to call the Automations API and trigger this automation
Copied!
fetch(automationsEndpoint, courierOptions).then((response) => response.json()).then((response) => console.log(response)).catch((err) => console.error(err));

Our Discord bot is ready to save some civilians. Try building a Discord bot of your own and tweet a screenshot of your Courier automated messages in action, and we will send a gift to the first three Secret Agents to complete this task! Head to courier.com/hack-now to get started. Don’t forget to submit your project to our Hackathon for a chance to win over $1000 in cash and prizes!
🔗 GitHub Repository: https://github.com/shreythecray/infiltration
🔗 Courier: app.courier.com
🔗 Register for the Hackathon: https://courier-hacks.devpost.com/
🔗 Discord Application and Bot Guide: https://discord.com/developers/docs/getting-started
🔗 Courier Discord Provider Docs: https://www.courier.com/docs/guides/providers/direct-message/discord/
🔗 Courier Automations Docs: https://www.courier.com/docs/automations/
🔗 Courier Automations API Reference: https://www.courier.com/docs/reference/

Transactional, Product, and Marketing Notifications: What Are the Differences?
Understanding the difference between transactional, product, and marketing notifications is essential for developers building notification infrastructure. Transactional notifications confirm user actions and require no opt-in. Product notifications drive feature adoption through education. Marketing notifications promote sales and require explicit consent. This guide explains the legal requirements, best practices, and when to use each notification type to build compliant systems users trust.Retry
By Kyle Seyler
October 23, 2025

How to Add Toast Notifications with the New Courier Toasts SDK
Learn how to add real-time, customizable toast notifications to your app with the Courier Toasts SDK. This quick tutorial shows how to integrate toasts using Web Components or React and sync them with your notification center for a seamless, modern UX.
By Dana Silver
October 20, 2025

What is the Twilio Messaging API?
Twilio's Messaging API enables developers to send and receive SMS, MMS, WhatsApp, and RCS messages at scale across 180+ countries. While Twilio excels at reliable message delivery through carrier networks, modern applications need more than single-channel messaging. Courier acts as a provider-agnostic orchestration layer that activates messaging across Twilio and other channels from a single platform. You get intelligent routing, user preference management, and fallback logic without vendor lock-in.
By Kyle Seyler
October 03, 2025
© 2026 Courier. All rights reserved.