Site icon RocketCOMS Developer Center

List Verticals

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"
    },
    {...},
    {...}
  ]
}
				
			
Exit mobile version