Courier CLI
The Courier CLI is a developer tool to help you build, test, and manage your integration with Courier directly from the command line.
NOTE
This feature is currently in Public Beta and is under active development. Please note that the API may change and that this feature is not covered under the Enterprise SLA.
It’s simple to install, works on macOS, Windows, and Linux, and offers a range of functionality to enhance your developer experience with Courier. You can use the Courier CLI to:
- Send messages from the command line to users, lists, or audiences
- Track events to trigger your Courier Automations
- Push & pull industry-standard translation files for internationalizing your content
Installing the Courier CLI
From the command-line, use the following command to install the Courier CLI and set your API key:
Requirements
- Courier CLI has only been tested on node.js v18+
Authenticate the CLI
The fastest way to get started is to run:
Courier CLI looks for an environment variable named COURIER_API_KEY
. It will load that key from the first location it finds in the following list:
- A
.courier
file in the current working directory ~/.courier
(in your home directory)- A
COURIER_API_KEY
value otherwise set in your environment (such as via~/.profile
or~/.zshrc
)
You can find your Courier API key in your Courier Settings.
Commands
courier config
– Set your Courier API keycourier whoami
– Display the currently authenticated workspacecourier send
- Send a notification to a user, list, or audiencecourier track
- Send a track event to trigger a Courier Automationscourier users:get
- Fetch the data for a given user IDcourier users:set
- Overwrite a user’s profile with the provided datacourier digests:flush
– Flush any currently queued events for a given user + digestcourier translations:upload
- Upload .PO files to your Courier workspacecourier translations:download
- Download .PO files from your Courier workspace
For more details, run courier
to see a list of commands and their arguments & options.
Examples
You can find the source for the Courier CLI on Github.