RocketCOMS

List Brand Relationships

Retrieve a list of brand relationships as defined by The Campaign Registry (TCR). A brand relationship represents a brand’s history with the CSP (e.g. basic account, small account, large account).

Endpoint

GET /v1/collections/brand-relationships

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 brand relationships. The following fields are returned for each brand relationship.

id

string (UUID)

Unique ID for the brand relationship.

alias

string

Alias name for the brand relationship. Provide this alias as the brandRelationship when creating a brand.

displayName

string

Display name for the brand relationship.

SAMPLE RESPONSE

				
					{
  "status": "0000",
  "result": [
    {
      "id": "ba68bc22-d512-4467-8a54-e92d8e8a9c53",
      "alias": "BASIC_ACCOUNT",
      "displayName": "BASIC ACCOUNT"
    },
    {...},
    {...}
  ]
}