Skip to main content

Audience Object

Audience is an arbitrary user collection that adheres to a set of rules. These rules can be as simple as "users in California," but can also be extended to a complex set of operations. For example, a product owner may need to build out a notification to send billing or usage alerts to workspace administrators who are from California. Doing this manually with Courier requires a lot of tedious work up front, which we want to unload from developers and product teams. The Audiences API is meant to solve this problem by having Courier do all the heavy lifting to make it "just work" for you.

Audience structure

{
"description": "(optional) description for this audience",
"name": "(optional) name for this audience",
"filter": {
"path": "title", // assumes you are using Courier profiles API and your user has title field
"value": "Software Engineer",
"operator": "EQ"
}
}