Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • Field: Authorization
  • Value: Bearer eyJhbGciOiJIU...

Pagination

Pagination is required to query big amounts of data.

Query ParameterDefaultMaximum valueDescription
limit10010.000Maximum number of records to receive
offset0
Offset for the first record to receive


To fetch all data from an endpoint:

  • ?limit=100&offset=0
  • ?limit=100&offset=100
  • ...
  • Increase offset by limit until number of returned rows is lower than limit

Filter query parameters

Filters parameters can be appended to some requests in the form of<type>:<field>=<op>:<value> e.g. f:createdAt=gt:<timestamp> to filter by createdAt date.

...