Is there a way to filter the RSS feed?

ADA Communications 0 Reputation points
2026-04-09T15:35:22.21+00:00

I'd like to connect an RSS feed but only share content from the time of the connection onward. Is there a way to filter or set up the feed so that only content displayed after a certain date pulls through to the Partner Hub? We want to avoid pulling in hosts of outdated content.

Community Center | Not monitored
0 comments No comments

1 answer

Sort by: Most helpful
  1. AI answer

    2026-04-09T15:35:36.3433333+00:00

    MSN Partner Hub does not provide a date-based filter on the RSS/ATOM feed itself. Ingestion Services simply checks the feed on a cadence (about every 15 minutes) and ingests any items it sees as new or updated based on the unique ID and dates in the feed.

    To avoid pulling in large amounts of outdated content when first connecting a feed, the feed must be controlled on the publisher side before it is given to MSN Partner Hub. Common approaches are:

    1. Limit the feed to only recent items
      • Configure the source feed so it only exposes items newer than the desired cutoff date (for example, only the last N items or only items published after a certain date).
      • When Ingestion Services first reads the feed, only those recent items will be ingested.
    2. Use unique IDs and update dates correctly
      • Ingestion logic is:
        1. If a unique ID has never been ingested, the item is created.
        2. If the same unique ID exists and the update date is newer than the publish date, the item is updated.
        3. Otherwise, the item is skipped.
      • This means any “old” items that are present in the feed for the first time will still be treated as new unless they are excluded from the feed by the publisher.
    3. Remove or expire unwanted older items after ingestion (if needed)
      • If some older items do get ingested and need to be removed, send a takedown signal through the feed using the same unique ID, an updated/modified date newer than the last version, and an expiration date in the past. This will cause those items to be unpublished on the next ingestion cycle.

    In summary, filtering by date must be implemented where the feed is generated. MSN Partner Hub’s ingestion cannot be configured to “start from today” independently of what the feed exposes.


    References:

    AI-generated content may be incorrect. Read our transparency notes for more information.

    Was this answer helpful?

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.