Hi I am calling the following endpoints:
const MICROSOFT_ENDPOINTS = [
/** CONTACTS */
"/me/contacts",
/** ORG CONTACTS */
"/contacts",
/** USERS */
"/users"
];
and with the following permissions
https://graph.microsoft.com/Contacts.Read
https://graph.microsoft.com/OrgContact.Read.All
https://graph.microsoft.com/User.Read.All
offline_access
This has worked when I was testing however, this doesn't work for one of our consumers. My question is there anywhere else a company using microsoft services can store the contacts, where we are not fetching from?
(What I am interested in is the mail contacts, which they see in outlook when they write a mail, As I've understood the Microsoft Graph API i s to be used and not something from exchange)