I want to be able to get all groups with a particular name (which we would require is unique).
I wonder if there is a single API request which can be used to get all the groups to which a user has access? From there we could simply filter the set by Name. Alternatively, is there a way to make a request to return all groups (at any level of depth) with a given name?
At the moment, the only way I can see to do this is to traverse the tree structure by starting with a request to get top-level groups, followed by recursive requests to get a child group by its id.
Thanks.