Pagination

You can supply pagination parameters with GET requests to retrieve long lists of objects in smaller batches.

Parameters

Parameter Description
limit=<max> Optional.

Retrieve at most <max> objects.

When absent, retrieve the entire list.

offset=<start> Optional. Available only for realm configuration requests.

Retrieve objects starting at position <start>.

When absent, the default offset is zero, indicating the first object in the larger list.

Example

To get the first ten application objects:

realm/applications?limit=10

To get the next ten objects:

realm/applications?limit=10&offset=10