Some questions regarding the API:
- The "Count" output parameter is called "Total": is it the final naming? Or will it change in the future to "Count"?
- The API specification says that by default, limit input parameter will be set to 100, now it is apparently at 500?
- The limit parameter override the total value, example with the country API:
By default: Total = 250 and limit = 500
If I set a limit to 40, the new return values will be: Total = 40 and limit = 40 instead of: Total = 250 and limit = 40
Is it a bug or the expected behavior?
The above is the feedback received from Famaco.
The Total will be changed to Count
The Count will remain the same across all requests but offset and limit will be used to paginate.
The above is the feedback received from Famaco.
Total
will be changed toCount
Count
will remain the same across all requests butoffset
andlimit
will be used to paginate.