
Automations allows you to define workflows around your notifications. Utilize delayed sends, conditionals and branching logic, and event-driven workflows to achieve your product's desired messaging strategy.
Get started for free

You can build out complex notification workflows in minutes with a drag-and-drop builder. No programming knowledge is needed. And, no need to redeploy your app.
Use predefined steps and automations templates, or create your own
Trigger automations off of Segment events or directly from an API call
Copied!
Courier's automations API allows you to create ad hoc automations, override existing automations, and otherwise programmatically interact with any automations features.
© 2026 Courier. All rights reserved.
import { CourierClient } from "@trycourier/courier";const courier = CourierClient({ authorizationToken: "******************" });// Example: send a message supporting email & SMSconst { messageId } = await courier.send({eventId: "courier-quickstart",recipientId: "37e2c08c-3958-449a-8266-dea286807f65",profile: { },data: {blueiables: "awesomeness",},});