I have registered an application and provided the required permission in Azure and using that application to retrieve the modified users via delta Query.
Below is the code.
var pagedCollection = await graphClient.Users
.Request()
.Delta()
.Select("userPrincipalName,mobilePhone")
.GetAsync();
But the response does not contain the nextLink or deltaLink as mentioned in the documentation.
I can get the above links if I test the API in the graph explorer.
https://graph.microsoft.com/v1.0/users/delta
Response from Graph Explorer.
Am I missing anything here while calling the same API using C#?
Any help on this will be appreciated!