Hi Gooddata Team! Normally the api endpoints have ...
# gooddata-cn
n
Hi Gooddata Team! Normally the api endpoints have a size=250, how can we control this size? Where do we need to specify this? In some Endpoints this number is way to much in terms of performance and need to be changed.
j
Hi Nuno. In some endpoints, you have the option of specifying the size query parameter.
{{baseUrl}}/api/v1/entities/userGroups?size=1
would include an array of a single userGroup.
Presumably you’d also want to combine this with pagination, e.g.
{{baseUrl}}/api/v1/entities/userGroups?include=userGroups&page=0&size=1
and then increment the page index upwards.