{ "opencollection": "1.0.0", "info": { "name": "Salesforce Analytics (CRM Analytics) REST Actions Feeds API", "version": "63.0" }, "request": { "auth": { "type": "oauth2", "flow": "authorization_code", "authorizationUrl": "https://login.salesforce.com/services/oauth2/authorize", "accessTokenUrl": "https://login.salesforce.com/services/oauth2/token", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "items": [ { "info": { "name": "Feeds", "type": "folder" }, "items": [ { "info": { "name": "Get the current user's news feed", "type": "http" }, "http": { "method": "GET", "url": "https://{instance}.salesforce.com/services/data/v63.0/wave/chatter/feeds/news/me/feed-elements", "params": [ { "name": "page", "value": "", "type": "query", "description": "Page token for pagination" }, { "name": "pageSize", "value": "", "type": "query" }, { "name": "sort", "value": "", "type": "query" } ] }, "docs": "Returns the current user's Chatter news feed, including posts from people and groups they follow, and records they own or follow." }, { "info": { "name": "Post to the current user's feed", "type": "http" }, "http": { "method": "POST", "url": "https://{instance}.salesforce.com/services/data/v63.0/wave/chatter/feeds/news/me/feed-elements", "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new Chatter feed post. Supports text posts, link posts, and posts with mentions. Rich text with inline images is supported." }, { "info": { "name": "Get a feed element", "type": "http" }, "http": { "method": "GET", "url": "https://{instance}.salesforce.com/services/data/v63.0/wave/chatter/feed-elements/:feedElementId", "params": [ { "name": "feedElementId", "value": "", "type": "path" } ] }, "docs": "Returns a specific Chatter feed element (post) by ID." }, { "info": { "name": "Delete a feed element", "type": "http" }, "http": { "method": "DELETE", "url": "https://{instance}.salesforce.com/services/data/v63.0/wave/chatter/feed-elements/:feedElementId", "params": [ { "name": "feedElementId", "value": "", "type": "path" } ] }, "docs": "Deletes a Chatter feed element. Only the author or an admin can delete a post." } ] } ], "bundled": true }