You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{"error":"BAD_INPUT","message":"Parameters were invalid","details":[{"msg":"Parameter must be a one-dimensional array of strings","param":"active_roles.add","location":"query"}]}
The must in the above error message is incorrect because the API specification states that active_roles.add is supposed to have a string value, and the implementation does support a string. (The implementation happens to support either the string "ADMIN" or an array in which each array element is the string "ADMIN" - for small numbers of array elements.)
The text was updated successfully, but these errors were encountered:
https://cveawg.mitre.org/api-docs/#/Users/userUpdateSingle says
However, a user can try to specify an array of objects instead of a string, i.e.,
This results in:
The
must
in the above error message is incorrect because the API specification states that active_roles.add is supposed to have a string value, and the implementation does support a string. (The implementation happens to support either the string "ADMIN" or an array in which each array element is the string "ADMIN" - for small numbers of array elements.)The text was updated successfully, but these errors were encountered: