PhoneBooks
Class finesse.restservices.PhoneBooks
Extends finesse.restservices.RestCollectionBaseRepresents the phone book collection object.
Example
_phoneBooks = _user.getPhoneBooks({
onCollectionAdd: _handlePhoneBookAdd,
onCollectionDelete: _handlePhoneBookDelete,
onLoad: _handlePhoneBooksLoaded
});
_phoneBookCollection = _phoneBooks.getCollection();
for (var phoneBookId in _phoneBookCollection) {
if (_phoneBookCollection.hasOwnProperty(phoneBookId)) {
_phoneBook = _phoneBookCollection[phoneBookId];
etc...
}
}For additional parameters and methods, see RestCollectionBase Common Parameters.