The purpose of this API is to get the recent forum posts in Zoho Connect.
Request URL: | https://connect.zoho.com/pulse/api/recentBlogs |
OAuth Scope: | zohopulse.blogs.READ |
Request Method: | GET |
Mandatory Header: | Header name: Authorization Header Value: Zoho-oauthtoken d92d401c803988c5cb849d0b4215f52 |
Parameters
Name | Description | Required |
scopeID (Required) | ID of the network the post has been made in. You can get this from the Network list API. | Required |
pageIndex | Start index to fetch posts. | Optional |
limit | End limit | Optional |
lastBlogCreatedTime | Fetch posts from the specified time. | Optional |
categoryId | Filter by category ID. | Optional |
categoryUrl | Filter by category URL. | Optional |
Sample URL
Copiedhttps://connect.zoho.com/pulse/api/recentBlogs?scopeID=929000000015001&pageIndex=1&limit=1
Sample Response
Copied{
"recentBlogs": {
"forumPartitionId": "929000000807001",
"blogs": [
{
"userDetails": {
"zuid": "2060758",
"id": "2060758",
"name": "Patricia Boyle",
"canFollow": "true"
},
"id": "929000000915053",
"createdTime": "1526649314357",
"formatedTime": "06:45 PM",
"title": "blog here",
"content": "Test Blog Content",
"url": "blog-here",
"linkurl": "https://connect.zoho.com/portal/zillum/forum/post/blog-here",
"isLocked": "true",
"categories": []
}
],
"pageIndex": "2",
"lastBlogCreatedTime": "1526649314357",
"modifiedTime": "1526649314357"
}
}