Yes, there is. When you make requests to many of the AC APIs, you may notice a links object. The links object includes additional endpoints you can explore for more details. When you request /api/3/groups or /api/3/groups/{id}, you should see in the links something that looks like /api/3/groups/{id}/userGroups. api/3/groups/{id}/userGroups is the endpoint that will list the Users in that Group.
Indeed, that is the endpoint I needed! I think this endpoint has no pagination, correct? I tried passing limit=1 to the query to test it, but it didn’t change the behaviour of the end point.
Documentation says that Endpoints that return collections of resources must limit the number of records returned in a given response , and of collections, it says that are represented by a top level member named after the resource in the plural form. The response of the API makes me think thatuserGroups` is a collection
I am writing some API integrations and I wanted to make sure that I didn’t miss any results, but it seems this endpoint doesn’t have any pagination feature.
Again, thanks a lot! This was the endpoint I was looking for (star wars reference )