Forum Discussion
micheleariis
Nov 03, 2021MCT
GRAPH - Add/remove user to distribution list
Good evening, for about a week, through a small program that uses graph api, the addition / removal of users from distribution lists no longer works; do you have any idea why? I have many processes t...
Mr_Helaas
Dec 05, 2021Iron Contributor
Hi micheleariis,
It is not possible to add user via the Graph API to a distribution list.
Add members - Microsoft Graph v1.0 | Microsoft Docs
Removing people is however possible
Remove member - Microsoft Graph v1.0 | Microsoft Docs
Delete https://graph.microsoft.com/beta/groups/{group id}/members/{user id}
One of the option you could consider is to use the Exchange online PowerShell command.
Install-module ExchangeOnlineManagement
Import-Module ExchangeOnlineManagement
Connect-ExchangeOnline
Get-DistributionGroup
#Copy name of distribution list
Get-DistributionGroupMember -Identity "<DL name>"
Add-DistributionGroupMember -Identity "<DL name>" -Member "<email user>"
Kind regards,
Rene