add-feeds action endpoint

URL: /external-feed-subscriptions/<id>/add-feeds.<format>

Supported Methods

POST Add one or more feed identifiers to the subscription.

POST Request Object Type

This endpoint accepts the following properties in POST requests:

feedIdents (array<string>)
(Required) A list of identifiers to be added to the subscription's set of feeds.

Client Library Methods for PHP

Add one or more feed identifiers to the subscription.
$tp->externalFeedSubscriptions->addFeeds(array(

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

))