You can fetch the details of a single newsfeed by making a GET request to https://api.intercom.io/news/newsfeeds/.
Example Request & Response
curl --request GET \
--url http://api.intercom.io/news/newsfeeds/6 \
--header 'accept: application/json' \
--header 'authorization: <Your access token>' \
--header 'content-type: application/json' \
{
"id": "3",
"type": "newsfeed",
"name": "Users Newsfeed",
"created_at": 1668509635,
"updated_at": 1668509635
}
Request Path Parameters
Parameter | Type | Required? | Description |
---|---|---|---|
id | String | Yes | The unique identifier for the newsfeed which is given by Intercom. |
Response
This will return a Newsfeed model.