Overview
This article provides information on finding - using the Jive REST API - the 'Events' created during a period in a 'Place' in Jive.
Information
The information presented in this article applies to all Jive instances.
Process
To get the events created in a place (for example, https://subdomain.domain.com/community/global
) during a period (for example, from 1-1-2017 to 1-1-2019):
- Send a
GET
request (to get a 'PlaceID') to
https://subdomain.domain.com/api/core/v3/places?filter=search("{PLACE NAME HERE}")
For example:
https://subdomain.domain.com/api/core/v3/places?filter=search("global")
- Send another
GET
request to
https://subdomain.domain.com/api/core/v3/places/{PLACE ID HERE}/contents?filter=type(event)&filter=creationDate(2019-01-01T00:00:00Z,2017-01-01T00:00:00Z)
Please see the Place Service or the Content Service under the Jive REST API documentation, for further details.
Confirmation
The result of the last request brings up all the events created for the place between the requested dates.
Comments
0 comments
Article is closed for comments.