Hello himanjo-2471, Azure AD identity endpoints are guaranteed to be available 99.99% of the time, however if you want to ensure the endpoints are reachable from your network you can send a OPTIONS HTTP request to the OpenID Connect discovery document https://login.microsoftonline.com/common/v2.0/.well-known/openid-configuration
and optionally to the endpoints listed in it (You need to execute a GET request) like the token endpoint https://login.microsoftonline.com/common/oauth2/v2.0/token
.
If you want to ping tenant specifc endpoints just replace the common
part with the tenant id or name. Eg: https://login.microsoftonline.com/<TENANT ID OR NAME EG. MYTENANT.ONMICROSOFT.COM>/v2.0/.well-known/openid-configuration
Let us know if this answer was helpful to you or if you need additional assistance. If it was helpful, please remember to accept it so that others in the community with similar questions can more easily find a solution.