You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
According to the API documentation (version 1.12) iBabsDocument objects are returned for:
Meetings
MeetingItems in Meetings
ListItems 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?
The text was updated successfully, but these errors were encountered:
According to the API documentation (version 1.12)
iBabsDocument
objects are returned for:Meetings
MeetingItems
in MeetingsListItems
in MeetingsIn the current implementation we retrieve
Meetings
based on a start and end date. Next we retrieveiBabsDocuments
directly attached to theMeeting
and to theMeetingItems
in the Meeting. Currently we do not retrieve theiBabsDocuments
attached to theListItems
in theMeeting
.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 theListItems
in theMeeting
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 theMeetingItems
orListItems
attributes). If there are documents not attached to meetings, and which can only be returned viaGetLists
, then we should stick to the current approach. Can you advice on this?The text was updated successfully, but these errors were encountered: