Is it possible to create Exchange contacts list which will be shared across the whole organisation using Graph API? These contacts are not the part of the organisation.
I know we can add contact to user's contact list, however was not able to find a way to have a contact which will be shared across the whole organisation.
POST /me/contacts
POST /users/{id | userPrincipalName}/contacts
POST /me/contactFolders/{contactFolderId}/contacts
POST /users/{id | userPrincipalName}/contactFolders/{contactFolderId}/contacts
I am aware that contacts are shared if the contact is within organisation and if they are in Active Directory Domain Services (AD DS). However these contacts are outside of the org.
While this does not answer my question directly, one of the solutions would be to have a user which will serve as a master containing all contacts.
This way contacts list would be accessible using following Graph call
GET /users/{id | userPrincipalName}/contacts
The downside of this approach is that whenever new contact is added to personal list it would need to be added to this list as well.