# Return the engagement details of a single post within a feed 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. Endpoint: GET /v2/feed/posts/{content_id}/engagement Version: v2 Security: oauth2_as_a_user ## Path parameters: - `content_id` (integer, required) ID of the post ## Response 200 fields (application/json): - `data` (object) - `data.id` (integer) Unique identifier for this post - `data.user_id` (integer) Example: 456 - `data.liked_at` (string) Date and time at which the user liked the post. If the user has not liked the post, this value will be null. Example: "2000-01-01T00:00:00Z" - `data.bookmarked_at` (string) Date and time at which the user bookmarked the post. If the user has not bookmarked the post, this value will be null. Example: "2000-01-01T00:00:00Z" - `data.viewed_at` (string) Date and time at which the user viewed the post. If the user has not viewed the post, this value will be null. Example: "2000-01-01T00:00:00Z" - `data.shares` (array) - `data.shares.share_id` (string) The identifier of the share record used internally at Firstup. - `data.shares.platform` (string) The platform on which the share was created. Usually a social network. - `data.shares.posted_at` (string) The date/time at which the post was created on the external platform. - `data.shares.share_url` (string) The url to the post where it is shared on the external platform. - `data.total_likes_count` (integer) The total likes of this post within the program by any user. Example: 5 - `data.total_shares_count` (integer) The total shares of this post within the program by any user. - `data.total_bookmarks_count` (integer) The total number of bookmarks this post has got within the program by any user.