An API that connects multiple Microsoft services, enabling data access and automation across platforms
The user resource in Microsoft Graph is a hub from which you can access the relationships and resources that are relevant to your users.
First to get the list of user's please use the following API in Graph explorer:
GET https://graph.microsoft.com/v1.0/users
Refer this DOC for more information.
Then to get the basic details of the user's :
GET https://graph.microsoft.com/v1.0/users/{id | userPrincipalName}
Refer this DOC for more information.
----------
If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".