- Return the engagement details of a single post within a feed
Return a user's feed of posts
Return a user's homepage feed
Return a user profile's submitted content
Return channels followed by a user profile
Return the details of a single post within a feed
Like a post in the feed
Unlike a post in the feed
Bookmark a post in the feed
Unbookmark a post in the feed
Get the trackable URL for a post in the feed
Share a post in the feed
View a post in the feed
Unview a post in the feed
List the comments on a content post
Comment on a post in the feed
List the replies to a comment on a content post
Reply to a comment on a post in the feed
Report a Comment or Reply for a given post in the feed
Query for users that are able to be mentioned.
Update a comment on a post in the feed
Delete a comment or reply on a post in the feed
Return the rendered content of a single post within the feed
Report a post in the feed
Acknowledge a post in the feed.
Returns the details of a single poll.
Respond to a poll.
Returns a user's feed of polls.
Experimental and undocumented video access
Experimental and undocumented attachment access
Experimental and undocumented attachment redirect
Return the engagement det...
Displays the user’s engagements related to a single feed post, including a timestamp for each type of engagement; for example, a liked_at timestamp is present if the user has liked the post and a bookmarked_at is present if the user has bookmarked the post. The post must be visible to the user or a 404 Not Found response will be returned.
Upon enabling expanded reactions types, the response will include a reaction_type_id which is associated with a reaction type.
Security
oauth2_as_a_user(Required scopes: feeds.read)
- US1https://partner.socialchorus.com/v2/feed/posts/{content_id}/engagement
- US2https://partner.us2.onfirstup.com/v2/feed/posts/{content_id}/engagement
- EUhttps://partner.onfirstup.eu/v2/feed/posts/{content_id}/engagement
curl -i -X GET \
'https://partner.socialchorus.com/v2/feed/posts/{content_id}/engagement' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'Response
{ "data": { "id": 0, "user_id": 456, "liked_at": "2000-01-01T00:00:00Z", "bookmarked_at": "2000-01-01T00:00:00Z", "viewed_at": "2000-01-01T00:00:00Z", "shares": [ … ], "total_likes_count": 5, "total_shares_count": 0, "total_bookmarks_count": 0 } }