v1

latestOpenAPI 3.1.02026-07-26549156879.0 KB
Posts > Post

Reads all Posts

What does it do?

These endpoints allow you to retrieve posts of a community

What can you do with groups?

Increase visibility and communication within the company by creating interaction and community within your company.

Who can use it?

For having this funcionality available, you need to have Communities V2 feature available

get/api/2026-07-01/resources/posts/posts

Query parameters

groups[]string[]

group identifiers of the posts

group identifiers of the posts

[
  "1",
  "2",
  "3"
]
fromstring

date from which posts will be retrieved

Example:2024-05-02

date from which posts will be retrieved

untilstring

date until which the posts will be retrieved

Example:2024-08-01

date until which the posts will be retrieved

ids[]string[]

identifiers of the post

identifiers of the post

[
  "1",
  "2",
  "3"
]

Response

OK

Example response

{
  "data": [
    {
      "id": "1",
      "title": "Are you ready for the perfomance review?",
      "description": "As you know today we start the performance review process.",
      "allow_comments_and_reactions": true,
      "published_at": "2024-07-17T00:00:00Z",
      "created_at": "2024-07-17T00:00:00Z",
      "updated_at": "2024-07-17T00:00:00Z",
      "visits_count": 10,
      "cover_image_url": "https://example.com/image.jpg",
      "posts_group_id": "1"
    }
  ]
}