Hello,
We are using C# to get the list of stations in Genesys Cloud.
The request is this one:
StationsApi.GetStations(pageSize: 500, sortBy: "name");
The response returns
class StationEntityListing {
Entities: System.Collections.Generic.List`1[PureCloudPlatform.Client.V2.Model.Station]
PageSize: 500
PageNumber: 1
Total: 121
LastUri: /api/v2/stations?pageSize=500&pageNumber=1
FirstUri: /api/v2/stations?pageSize=500&pageNumber=1
SelfUri: /api/v2/stations?pageSize=500&pageNumber=1
NextUri:
PreviousUri:
PageCount: 1
}
And only 100 entries in the Entities list.
Are we doing something wrong? Is this a known issue?
Thank you in advance.
Ricardo.