Skip to main content

Get an audience

Returns the specified audience by id.

URL: https://api.courier.com/audiences/:audience_id

Method: GET

Path Parameters

audience_idstringrequired
A unique identifier representing the audience_id

Responses

status: 200 OK

idstring
A unique identifier representing the audience_id
namestring
The name of the audience
descriptionstring
A description of the audience
filteroneOf
+ Show Properties

status: 400 Bad Request

messagestring
A message describing the error that occurred.
typestring
[invalid_request_error] The type of error that occurred.

Request Example

curl --request GET \
--url https://api.courier.com/audiences/developer-audience \
--header 'Accept: application/json'

Responses Example

{
"id": "developer-audience",
"name": "Developer Audience",
"description": "Audience for developers",
"filter": {
"operator": "EQ",
"value": "engineer",
"path": "title"
}
}
{
"message": "filter operator should be equal to one of the allowed values AND, EQ, GT, GTE, INCLUDES, LT, LTE, NEQ, OMIT, OR",
"type": "invalid_request_error"
}

Example

Method: GET

URL: https://api.courier.com/audiences/abcdefgh12345678

Was this helpful?