update-filters action endpoint

URL: /external-feed-subscriptions/<id>/update-filters.<format>

Supported Methods

POST Change the filtering rules for the subscription.

POST Request Object Type

This endpoint accepts the following properties in POST requests:

filterRules (array<string>)
(Required) The new list of rules for filtering notifications to this subscription; this will replace the subscription's existing rules.

Client Library Methods for PHP

Change the filtering rules for the subscription.
$tp->externalFeedSubscriptions->updateFilters(array(

    # Required Parameters
    "id" => $id,
    "payload" => $payload,

))