Appearance
NewEntrySaved Events
When an enterprise member adds an enterprise tag (saves an article to a Team Board) to an entry, Feedly Cloud will notify the webhook URL(s) registered for the “NewEntrySaved” event.
The request will look like this:
json
POST
Authorization: my_authorization_header
Content-Type: application/json; charset=UTF-8
X-Request-Id: 166e626a23b:3b:8c61af75The request body will look like this for generic webhooks:
json
{
"type": "NewEntrySaved",
"triggerId": "166e676a496:52:8c61af75",
"entryId": "Xne8uW/IUiZhV1EuO2ZMzIrc2Ak6NlhGjboZ+Yk0rJ8=_166e4ae74e0:3b7a:c7d25626",
"resourceId": "enterprise/acmeinc/tag/2a5a5470-982a-4f9e-a3c3-b72abdb1eb6d",
"resourceName": "Security",
"savedBy": "Jane Doe",
"title": "Security researchers have busted the encryption in several popular Crucial and Samsung SSDs",
"entryUrl": "",
"feedlyUrl": "",
"feedId": "feed/",
"feedTitle": "TechCrunch",
"publishedDate": "2018-11-05",
"publishedTimestamp": 1541434930400,
"author": "Zach Whittaker",
"visualUrl": "",
"keywords": [
"Gadgets",
"Hardware",
"Security",
"cryptography",
"disk encryption",
"encryption",
"open source software",
"solid state drive"
],
"contentHtml": "...",
"content": "..."
}| Object | Type | Description |
|---|---|---|
| feedlyUrl | URL | The URL of the saved entry on the Feedly website |
| entryUrl | URL | The URL of the saved entry on the publisher website |
| savedBy | String | The name of the enterprise member who saved this entry |
| entryId | String | The unique ID of the saved entry |
| title | String | The saved entry title |
| resourceId | String | The enterprise tag id and label this entry was saved to; see enterprise tags |
| resourceName | String | The enterprise tag id and label this entry was saved to; see enterprise tags |
| publishedDate | Date | The saved entry’s published date and EPOCH timestamp (in milliseconds) |
| publishedTimestamp | Date | The saved entry’s published date and EPOCH timestamp (in milliseconds) |
| contentHtml | String | The saved entry content, with and without HTML tags. |
| content | String | The saved entry content, with and without HTML tags. |
| feedId | String | (Optional) The id and name of the entry’s feed |
| feedTitle | String | (Optional) The id and name of the entry’s feed |
| author | String | (Optional) The saved entry’s author (if available) |
| visualUrl | URL | (Optional) The URL of the hero image for the saved entry (if available) |
| keywords | Array of strings | (Optional) The saved entry keywords (if available) |