Add an event comment by entity ID
|
POST api/2.0/community/event/comment
|
Adds a comment to the entity with the ID specified in the request. The parent event ID can be also specified if needed.
|
Add an event comment by feed ID
|
POST api/2.0/community/event/{feedid}/comment
|
Adds a comment to the event with the ID specified in the request. The parent event ID can be also specified if needed.
|
Comment subscription
|
POST api/2.0/community/event/{feedid}/subscribe
|
Subscribes to or unsubscribes from the comments of the event with the ID specified in the request.
|
Create an event
|
POST api/2.0/community/event
|
Creates a new event with the parameters (title, content, type) specified in the request.
|
Delete an event
|
DELETE api/2.0/community/event/{feedid}
|
Deletes an event with the ID specified in the request.
|
Get a comment preview
|
POST api/2.0/community/event/comment/preview
|
Returns a comment preview with the content specified in the request.
|
Get an event
|
GET api/2.0/community/event/{feedid}
|
Returns the detailed information on the event with the ID specified in the request.
|
Get event comments
|
GET api/2.0/community/event/{feedid}/comment
|
Returns a list of all the comments on the event with the ID specified in the request.
|
Get events
|
GET api/2.0/community/event
|
Returns a list of all the portal events with the event titles, dates of creation and update, event texts, and authors.
|
Get my events
|
GET api/2.0/community/event/@self
|
Returns a list of all the events for the current user with the event titles, dates of creation and update, event texts, and author.
|
Remove a comment
|
DELETE api/2.0/community/event/comment/{commentid}
|
Removes a comment with the ID specified in the request.
|
Search events
|
GET api/2.0/community/event/@search/{query}
|
Returns a list of events matching the search query specified in the request with the event titles, dates of creation and update, event types, and authors.
|
Update a comment
|
PUT api/2.0/community/event/comment/{commentid}
|
Updates the selected event comment with the content specified in the request.
|
Update an event
|
PUT api/2.0/community/event/{feedid}
|
Updates the selected event changing the event title, content or/and event type specified in the request.
|
Vote for an option
|
POST api/2.0/community/event/{feedid}/vote
|
Sends a vote for a certain option in a poll-type event with the ID specified in the request.
|