Hello!
I have an issue with field showInAddressList in graph Microsoft Users API.
When I use users delta query this field is absent for all users in response.
Request example:
https://graph.microsoft.com/v1.0/users/delta?$select=id,userPrincipalName,givenName,surname,displayName,mailNickname,companyName,department,jobTitle,proxyAddresses,mail,otherMails,businessPhones,mobilePhone,faxNumber,showInAddressList
And if I use get user API I get this field in response but it always is null although this parameter was changed for user in admin.microsoft.com
Request:
https://graph.microsoft.com/v1.0/users/4c0037a7-3eb5-4b75-ba6b-e35615472664?$select=id,userPrincipalName,givenName,surname,displayName,birthday,companyName,department,jobTitle,proxyAddresses,mail,otherMails,businessPhones,mobilePhone,faxNumber,mailNickname,showInAddressList
Response:
{
"@odata.context": "https://graph.microsoft.com/v1.0/$metadata#users(id,userPrincipalName,givenName,surname,displayName,birthday,companyName,department,jobTitle,proxyAddresses,mail,otherMails,businessPhones,mobilePhone,faxNumber,mailNickname,showInAddressList)/$entity",
"id": "4c0037a7-3eb5-4b75-ba6b-e35615472664",
"userPrincipalName": "******@rcclouddir.onmicrosoft.com",
"givenName": "Test",
"surname": "User",
"displayName": "Test User",
"companyName": null,
"department": null,
"jobTitle": null,
"proxyAddresses": [
"smtp:upd.******@rcclouddir.onmicrosoft.com",
"SMTP:upd2.******@rcclouddir.onmicrosoft.com",
"smtp:******@rcclouddir.onmicrosoft.com",
"smtp:******@rcclouddir.onmicrosoft.com"
],
"mail": "upd2.******@rcclouddir.onmicrosoft.com",
"otherMails": [],
"businessPhones": [],
"mobilePhone": null,
"faxNumber": null,
"mailNickname": "test.user",
"showInAddressList": null,
"birthday": "0001-01-01T00:00:00Z"
}
But showInAddressList option was changed to false for this user (see attachment
)
Could you please help with these two issues?