Description
According to the API documentation (version 1.12) iBabsDocument
objects are returned for:
Meetings
MeetingItems
in MeetingsListItems
in Meetings
In the current implementation we retrieve Meetings
based on a start and end date. Next we retrieve iBabsDocuments
directly attached to the Meeting
and to the MeetingItems
in the Meeting. Currently we do not retrieve the iBabsDocuments
attached to the ListItems
in the Meeting
.
Instead GetLists
is used to retrieved lists and the corresponding documents , and then the documents within the desired date range are stored.
@joepio it seems we are retrieving too much here (GetLists
will result in retrieval of documents outside the date range). Instead we should use the ListItems
in the Meeting
to retrieve the corresponding documents for the date range. This will only work if all documents are attached to meetings somehow (either directly, or via the MeetingItems
or ListItems
attributes). If there are documents not attached to meetings, and which can only be returned via GetLists
, then we should stick to the current approach. Can you advice on this?
Activity