Hi @Leo Kishore ,
I would check to make sure you get a result for findRooms at https://developer.microsoft.com/en-us/graph/graph-explorer with the credentials you're using. A stretch could be a policy on your Azure AD tenant, like MDM, that could be blocking the request. I would also verify that your accessToken
does indeed have the appropriate scopes needed.
Regards,
Ryan
//IUserFindRoomListsCollectionPage findRoomLists = graphServiceClient.me()
// .findRoomLists()
// .buildRequest()
// .get();
String request;
request="/me/findRoomLists";
JsonObject obj = graphServiceClient.customRequest(request).buildRequest().get();
This is the code part.
Sign in to comment