get Conference Entries
fun getConferenceEntries(before: Date?, after: Date?, limit: Int = 10, sortDescending: Boolean = true): Single<List<ConferenceEntry>>
Fetches the conference log entries related to this user within the specified time interval.
Return
A single that will emit the conference entry list when the request is processed. In case of error, it will emit a SippoResourceError.
Parameters
before
If it is not null, conferences created before the specified value are fetched.
after
If it is not null, conferences created after the specified value are fetched.
limit
Maximum number of conferences fetched. It is 10 by default.
sort Descending
If true, the entries are fetched in descending order of creation date. If it is false, the order will be ascending. By default, the selected order is descending.