RocketCOMS

Associate Keyword Filter Lists with a Campaign

Add or remove keyword filter lists for a campaign.

Note  Keyword filtering must be enabled for the campaign before you can add keyword filter lists.

Endpoint

PUT /v1/campaigns/{id}/filter-words

Authorization Header

Authorization: Bearer <access_token>
or
Authorization: Basic <encodedString>
where <encodedString> is your <api-key>:<api-secret> string encoded using Base64 encoding

Path Parameters

id  REQUIRED

string (UUID)

Unique ID assigned to the campaign in RocketCOMS.

Request Body

ids

array of strings

List of IDs for the keyword filter lists associated with the campaign.

Returns

If successful, returns 200 Filter words assigned successfully.

SAMPLE REQUEST

				
					{
  "ids": [
    "b6d5c046-a698-46c3-8ab6-d52fa68fc9d7",
    "0f1ee747-2c9b-48ca-97f8-2dcdf1a5b711",
  ]
}
				
			

SAMPLE RESPONSE

				
					{
  200 Filter words assigned successfully
}