The purpose of this API is to get the latest comments from a group in Zoho Connect.
Request URL: | https://connect.zoho.com/pulse/api/latestPartitionComments |
OAuth Scope: | zohopulse.feedList.READ |
Request Method: | GET |
Mandatory Header: | Header name: Authorization Header Value: Zoho-oauthtoken d92d401c803988c5cb849d0b4215f52 |
Parameters
Name | Description | Required |
scopeID | ID of the network the group belongs to. You can get this from the Network list API. | Required |
partitionId | ID of the Group you need to fetch the comments from. | Required |
lastViewedTime | Fetch data after a specified time. Time should be in milliseconds. eg) | Required |
Sample URL
Copiedhttps://connect.zoho.com/pulse/api/latestPartitionComments?scopeID=105000017039001&partitionId=105000026861077&lastViewedTime=1521200149636
Sample Response
Copied{
"latestPartitionComments": {
"comments": [
{
"id": "105000199722713",
"streamId": "105000199703692",
"content": "latest comment",
"status": "",
"createdBy": "26963044",
"isApproved": "true",
"time": "1521359682370",
"displayTime": "18 Mar 2018 07:54 AM",
"likeCount": "0"
}
]
}
}