Activity Feeds V3 is in closed alpha — do not use it in production (just yet).

Pins

Overview

Sometimes you’ll want to pin your favorite activity to a feed. You can pin an activity like this:

var response = await _feedsV3Client.PinActivityAsync(
    "user",
    _testFeedId,
    activityId,
    new PinActivityRequest
    {
        UserID = _testUserId
    }
);

When you read a feed pinned activities are automatically returned:

var response = await _feedsV3Client.UnpinActivityAsync(
    "user",
    _testFeedId,
    activityId,
    new { user_id = _testUserId }
);
© Getstream.io, Inc. All Rights Reserved.