Reputation: 7063
I am trying to get the groups of a user using Azure AD Graph Explorer.
With a url similar to https://graph.windows.net/myorganization/users/[email protected]/getMemberGroups
I am getting the following error:
{
"odata.error": {
"code": "Request_BadRequest",
"message": {
"lang": "en",
"value": "Parameter securityEnabledOnly must be valid Boolean value."
},
"date": "2017-09-25T04:26:30",
"requestId": "f43323c9-97e9-4ef2-813f-57690b2869a8",
"values": null
}
}
How do I solve this error?
Upvotes: 3
Views: 3416
Reputation: 27528
As shown by the error message , the securityEnabledOnly parameter should be a Boolean value true/false:
Upvotes: 9