Workplace from Meta is being discontinued – seamlessly migrate to Zoho Connect today. Learn More

Skip to product menu
Skip to main content

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

NameDescriptionRequired
scopeID (Required)ID of the network the post has been made in. You can get this from the Network list API.Required
pageIndexStart index to fetch posts.Optional
limitEnd limitOptional
lastBlogCreatedTimeFetch posts from the specified time.Optional
categoryIdFilter by category ID.Optional
categoryUrlFilter 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"
  }
}