Azure GraphAPI getMemberGroups Bad Request error -




i attempting make azure graph api call getmembergroups, getting "400 bad request" error in response.

according documentation [https://msdn.microsoft.com/en-us/library/azure/ad/graph/api/functions-and-actions#getmembergroups], following request should : enter image description here

i using postman make request keep getting "request_badrequest" error code.

my post request is:

enter image description here red bar tenant id , blue bar object id of user.

my headers are:

enter image description here

my body is:

enter image description here

i keep getting error message:

{     "odata.error": {         "code": "request_badrequest",         "message": {             "lang": "en",             "value": "invalid json. value '------' not valid number."         }     } } 

i not sure why happening, have clues?

since posting json data, shouldn't use form-data. application/json type data, should use raw option send data.





wiki

Comments

Popular posts from this blog

Asterisk AGI Python Script to Dialplan does not work -

kotlin - Out-projected type in generic interface prohibits the use of metod with generic parameter -

python - Read npy file directly from S3 StreamingBody -