Audiences
AuthTokens
Brands
Inbound
Lists
Messages
Notifications
Profiles
Tenants
User Preferences
User Tenants
Brands
Get a brand
Fetch a specific brand by brand ID.
GET
/
brands
/
{brand_id}
Copy
Ask AI
curl --request GET \
--url https://api.courier.com/brands/{brand_id} \
--header 'Authorization: Bearer <token>'
Copy
Ask AI
{
"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.
Path Parameters
A unique identifier associated with the brand you wish to retrieve.
Response
200 - application/json
The response is of type object
.
Copy
Ask AI
curl --request GET \
--url https://api.courier.com/brands/{brand_id} \
--header 'Authorization: Bearer <token>'
Copy
Ask AI
{
"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>"
}
Assistant
Responses are generated using AI and may contain mistakes.