Nishant Patel
Nishant Patel

Reputation: 11

Get Azure AD custom domain list using graph api

We are planning to add support for azure AD login using custom domain in our multi tenant application. How do I get list of custom domains added in azure AD using graph API? or is there any other way to get list of custom domains added in Azure AD?

Upvotes: 1

Views: 1487

Answers (1)

BenV
BenV

Reputation: 12452

Using the Microsoft Graph API:

https://graph.microsoft.com/v1.0/domains

This returns a collection of domain objects.

Upvotes: 3

Related Questions