Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Query Parameters
A unique identifier that allows for fetching the next set of audiences
curl --request GET \
--url https://api.courier.com/audiences \
--header 'Authorization: Bearer <token>'{
"paging": {
"cursor": "<string>",
"more": true
},
"items": [
{
"id": "<string>",
"name": "<string>",
"description": "<string>",
"filter": {
"operator": "ENDS_WITH",
"value": "<string>",
"path": "<string>"
},
"created_at": "<string>",
"updated_at": "<string>"
}
]
}Get the audiences associated with the authorization token.
curl --request GET \
--url https://api.courier.com/audiences \
--header 'Authorization: Bearer <token>'{
"paging": {
"cursor": "<string>",
"more": true
},
"items": [
{
"id": "<string>",
"name": "<string>",
"description": "<string>",
"filter": {
"operator": "ENDS_WITH",
"value": "<string>",
"path": "<string>"
},
"created_at": "<string>",
"updated_at": "<string>"
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
A unique identifier that allows for fetching the next set of audiences