Example Request & Response
curl --request GET \
--url http://api.intercom.io/news/newsfeeds \
--header 'accept: application/json' \
--header 'authorization: <Your access token>' \
--header 'content-type: application/json' \
{
"type": "list",
"pages": {
"page": 1,
"per_page": 10,
"total_pages": 1,
"type": "pages"
},
"data": [
{
"id": "4",
"type": "newsfeed",
"name": "News center newsfeed",
"created_at": 1668509637,
"updated_at": 1668509637
},
{
"id": "3",
"type": "newsfeed",
"name": "Users Newsfeed",
"created_at": 1668509635,
"updated_at": 1668509635
},
{
"id": "2",
"type": "newsfeed",
"name": "Leads Newsfeed",
"created_at": 1668509634,
"updated_at": 1668509634
},
{
"id": "1",
"type": "newsfeed",
"name": "Visitors Newsfeed",
"created_at": 1668509631,
"updated_at": 1668509631
}
],
"total_count": 4
}
You can fetch a list of all newsfeeds by making a GET request to https://api.intercom.io/news/newsfeeds
Response
Key | Type | Description |
---|---|---|
type | String | The type of object - list . |
pages | Object | A Pages object with the information needed to paginate through Newsfeeds. |
total_count | Integer | A count of the total number of articles. |
data | Array | An array of Newsfeed Objects |