Request and response format - Publisher REST API

All data in request or response from the API is in JSON format. Request and response fields for every API endpoint will be different, and you will know about them individually.
Date Format
All dates and timestamps are returned and expected in ISO 8601 format: YYYY-MM-DDTHH:MM:SSZ.
Example: 2022-05-23T14:38:26.133
Pagination
All collections returned are limited to 5 items by default. This limit can be overridden by providing a "length" parameter in your request. You can request up to 100 items per API by overriding the parameter.
To request first set of data, your request should be:
GET https://api.knorish.com/publisher/{api_version}/user/getusers?start=0&length=5
To request second set of data, your request should be:
GET https://api.knorish.com/publisher/{api_version}/user/getusers?start=5&length=5
To request third set of data, your request should be:
GET https://api.knorish.com/publisher/{api_version}/user/getusers?start=10&length=5