Definition
https://www.yammer.com/api/v1/messages/my_feed.json
Parameters
| Name |
In |
Required |
Type |
Description |
| older_than |
Query |
|
integer |
Returns messages older than the message ID specified as a numeric string. This is useful for paginating messages. For example, if you’re currently viewing 20 messages and the oldest is number 2912, you could append “?older_than=2912″ to your request to get the 20 messages prior to those you’re seeing. |
| newer_than |
Query |
|
integer |
Returns messages newer than the message ID specified as a numeric string. This should be used when polling for new messages. If you’re looking at messages, and the most recent message returned is 3516, you can make a request with the parameter “?newer_than=3516″ to ensure that you do not get duplicate copies of messages already on your page. |
| threaded |
Query |
|
boolean |
threaded=true will only return the thread starter (first message) for each thread. This parameter is intended for apps which need to display message threads collapsed. threaded=extended will return the thread starter messages and the two most recent messages all ordered by activity, as they are viewed in the default view on the Yammer web interface. |
| limit |
Query |
|
integer |
Return only the specified number of messages. Works for threaded=true and threaded=extended. |
Documentation
The “Following” feed which is conversations involving people and topics that the user is following.
A 200 OK response includes the following fields.
| Field |
Description |
| id |
Id of the message |
| sender_id |
Id of the user posting the message |
| created_at |
Date and time when the emssage was created |
| network_id |
Id of the network in which this message was posted |
| group_id |
Id of the group in whcih this message was posted |
| thread_id |
Id of the thread |
| notified_user_ids |
Ids of the users mentioned in this message |
| privacy |
Whether the message was posted in a public or private group |
| liked_by |
Shows the reactions count on the mesage and the Ids of the users who reacted to the message |