RocketCOMS

Keyword Filter List Object

The Keyword Filter List object represents a list of keywords used to block unwanted messages. The object also includes the brands and campaigns that the list is associated with.

Attributes

id

string (UUID)

Unique ID assigned to the keyword filter list in RocketCOMS.

name

string

Name of the keyword filter list.

words

array of strings

List of keywords.

campaigns

array

List of brands and related campaigns that the keyword filter list applies to.

brandId

string (UUID)

Unique ID assigned to the brand in RocketCOMS.

brandName

string

Name of the brand.

campaignId

string (UUID)

Unique ID assigned to the campaign in RocketCOMS.

campaignName

string

Name of the campaign.

Keyword Filter List Object

				
					{
  "id": "582df7c3-76da-408e-b1bc-c6bc00414e5b",
  "name": "Keyword Filters",
  "words": [
    "blocked-word1",
    "blocked-word2",
    "blocked-word3"
  ],
  "campaigns": [
    {
      "brandId": "5c068161-206c-4178-b5b1-be4f6e5ce807",
      "brandName": "ABC Mobile",
      "campaignId": "8538e413-b1fe-42c8-b575-4f1f3735811f",
      "campaignName": "Spring Campaign"
    }
  ]
}