Retrieve Your Team Feed Updates with Impressions Count
Description
This API endpoint provides access to your team's aggregated LinkedIn feed, including post content and performance metrics such as impressions and reactions.
Requirements
Before using this endpoint, ensure you have set up the **Teamfluence API.**
Endpoint
**GET /{profile_id}/posts**
{profile_id}represents your unique profile identifier, which can be found on the Profile page.- API calls using a specific
{profile_id}will only return data for the associated teamspace.
Response Details
- This endpoint returns posts from the last 7 days.
{
"posts": [
{
"id": "string",
"type": "POST",
"content": "string",
"parent_content": "string",
"author": "string",
"post_url": "string",
"image": "string",
"parent_image": "string",
"shares_num": 0,
"likes_num": 0,
"impressions_num": 0,
"comments_num": 0,
"published_at": "2024-11-04T18:20:34.792Z"
}
]
}