Release Notes
June 29 2024
Versions
Added organizationGroups
Support in Contacts and Autocomplete Feature
Within the contacts and autocomplete features we have added the support for organizationGroups
.
Added Various Methods in Contact Element
We have introduced three new methods in the Contact Element: enableAtHere
, disableAtHere
, and updateContactListScopeForOrganizationUsers
.
API Methods:
const contactElement = client.getContactElement();
// To enable @here for contact list
contactElement.enableAtHere();
// To disable @here for contact list
contactElement.disableAtHere();
/**
* Update contact list scope for organization users.
* @param scope ContactListScopeForOrganizationUsers[]
*/
contactElement.updateContactListScopeForOrganizationUsers(['all', 'organization', 'organizationUserGroup', 'document']);
Was this page helpful?