Hello,
A simple request to get a list of groups with their roles:
https://{{hostname}}/api/groups?expand=resources&attributes=id,role
Returns following error:
{
“error”: {
“kind”: “bad_request”,
“message”: “Invalid attributes specified: role”,
“klass”: “Api::BadRequestError”
}
}
Group should normally have relationships to role and tenant according to the doc here.
Whereas the same request with tenant works well:
https://{{hostname}}/api/groups?expand=resources&attributes=id,tenant
Have I missed anything here?