Pagination

The majority of list resources in the API are paginated to allow clients to traverse data over multiple requests.

The majority of list resources in the API are paginated to allow clients to traverse data over multiple requests.

Imber pagination works with skip and limit so you must send this two parameters inside your query string.

Default skip is 0 and limit is 10

Example of a pagination :

GET https://api.imber.live/operators?workSpaceId=:id&skip=10&limit=20

Last updated