We have introduced the onContactSelected API method in the Contact Element. This new method allows organization clients to add selected users to their organization or document-level IAM directly.
export class UserContactSelectedPayload { /** * Selected user contact details. */ contact!: UserContact; /** * Is user part of organization contact. */ isOrganizationContact!: boolean; /** * Is user part of document contact. */ isDocumentContact!: boolean; /** * Document access type. */ documentAccessType!: string;}