Interface EventsService
public interface EventsService
Service for working with the Events
- Since:
- 1.3
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Delete a specific event by its IDGet event from IDlist
(EventsListRequest request) List all events in a projectsend
(SendEventRequest request) Send an event
-
Method Details
-
send
Send an eventSends an event to the referenced contact from the referenced app.
Note that this operation enqueues the event in a queue so a successful response only indicates that the event has been queued
- Parameters:
request
- Send event request parameters- Returns:
- Response related to event enqueued
- Since:
- 1.3
-
get
Get event from ID- Parameters:
eventId
- The unique ID of the event- Returns:
- Conversation event
- Since:
- 1.3
-
delete
Delete a specific event by its ID- Parameters:
eventId
- The unique ID of the event- Since:
- 1.3
-
list
List all events in a project- Parameters:
request
- Request parameters- Returns:
- List of events
- Since:
- 1.3
-