- Introduction
- Authentication
- Sorting and Pagination
- Errors
- Authentication APIs
- Account APIs
- User Authentication APIs
- Brand APIs
- Campaign APIs
- Campaign Batch APIs
- Create a Campaign Batch
- Retrieve Errors for a Campaign Batch
- Update a Campaign Batch
- Download Original Campaign Batch CSV File
- Retrieve a Campaign Batch
- List All Campaign Batches
- List All Messages for a Processed Campaign Batch
- Download All Messages for a Processed Campaign Batch
- Remove a Campaign Batch
- Campaign Batch Object
- Campaign Batch Message Object
- Campaign Subscription APIs
- Recipient APIs
- Recipient Batch APIs
- Recipient List APIs
- Keyword Filtering APIs
- Message Template APIs
- Message APIs
- Collection APIs
- Insights APIs
List Verticals
Retrieve a list of verticals as defined by The Campaign Registry (TCR). A vertical represents the industry segment for a brand.
Endpoint
GET /v1/collections/verticals
Authorization Header
Authorization: Bearer <access_token>
or
Authorization: Basic <encodedString>
where <encodedString> is your <api-key>:<api-secret> string encoded using Base64 encoding
Request Body
None
Returns
Returns an array of verticals. The following fields are returned for each vertical.
id
string (UUID)
Unique ID for the vertical.
verticalName
string
Vertical name. Provide this as the vertical when creating a brand.
displayName
string
Vertical display name.
industryId
string
Industry ID.
description
string
Vertical description.
SAMPLE RESPONSE
{
"status": "0000",
"result": [
{
"id": "d64dbf60-e826-11ec-8fea-0242ac120002",
"verticalName": "string",
"displayName": "string",
"industryId": "string",
"description": "string"
},
{...},
{...}
]
}