Audiences
Audit Events
AuthTokens
Inbound
Lists
Messages
Notifications
Profiles
Tenants
Translations
User Preferences
User Tenants
Brands
List brands
GET
/
brands
curl --request GET \
--url https://api.courier.com/brands \
--header 'Authorization: Bearer <token>'
{
"paging": {
"cursor": "<string>",
"more": true
},
"results": [
{
"created": 123,
"id": "<string>",
"name": "<string>",
"published": 123,
"settings": {
"colors": {
"primary": "<string>",
"secondary": "<string>",
"tertiary": "<string>"
},
"inapp": "<any>",
"email": {
"footer": "<any>",
"header": "<any>"
}
},
"updated": 123,
"snippets": {
"items": [
{
"format": "handlebars",
"name": "<string>",
"value": "<string>"
}
]
},
"version": "<string>"
}
]
}
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 brands.
Response
200 - application/json
The date/time of when the brand was created. Represented in milliseconds since Unix epoch.
Brand name
The date/time of when the brand was published. Represented in milliseconds since Unix epoch.
The date/time of when the brand was updated. Represented in milliseconds since Unix epoch.
The version identifier for the brand
Brand Identifier
curl --request GET \
--url https://api.courier.com/brands \
--header 'Authorization: Bearer <token>'
{
"paging": {
"cursor": "<string>",
"more": true
},
"results": [
{
"created": 123,
"id": "<string>",
"name": "<string>",
"published": 123,
"settings": {
"colors": {
"primary": "<string>",
"secondary": "<string>",
"tertiary": "<string>"
},
"inapp": "<any>",
"email": {
"footer": "<any>",
"header": "<any>"
}
},
"updated": 123,
"snippets": {
"items": [
{
"format": "handlebars",
"name": "<string>",
"value": "<string>"
}
]
},
"version": "<string>"
}
]
}