Meetings
Functions
Link copied to clipboard
fun createMeeting(request: MeetingRequest, onCompletion: (Either<Meeting, SippoResourceError>) -> Unit)
Content copied to clipboard
Creates a new meeting based on the provided request.
Link copied to clipboard
fun deleteMeetingById(id: String, onCompletion: (SippoResourceError?) -> Unit)
Content copied to clipboard
Deletes the meeting identified by the provided id.
Link copied to clipboard
fun getMeetingById(id: String, onCompletion: (Either<Meeting, SippoResourceError>) -> Unit)
Content copied to clipboard
Fetches the meeting from the specified id.
Link copied to clipboard
fun getMeetings(meetingSearch: MeetingSearch = MeetingSearch(), onCompletion: (Either<List<Meeting>, SippoResourceError>) -> Unit)
Content copied to clipboard
Fetches all the meetings from the specified meetingSearch.
Link copied to clipboard
fun updateMeeting(request: UpdateMeetingRequest, onCompletion: (Either<Meeting, SippoResourceError>) -> Unit)
Content copied to clipboard
Updates an existing meeting with the information provided in the request.