Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Getting email aliases via API

I am trying to link an email with its aliases.

For instance the same email [email protected] might have alias [email protected].

I would like to use the microsoft graph API or some office 365 based API to get the list of aliases to an email.

How do I go about this?

like image 556
Vignesh T.V. Avatar asked Jun 06 '26 15:06

Vignesh T.V.


1 Answers

The e-mail aliases are in the proxyAddresses property of the user object in the Graph API.

Read the intro, which also has links to samples to get you started

like image 178
RasmusW Avatar answered Jun 10 '26 08:06

RasmusW