Versions Compared

Key

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

...

Pagination

Endpoints that support pagination allow you to adjust the quantity and range of results returned. The following query parameters will let you change the result set size for the list endpoints and access additional pages.

  • per_page - defaults to 100, maximum of 100
  • page - defaults to 1

Some endpoints also have additional parameters as documented below.

...

Conditionals

Some endpoint parameters allow the following modifier suffixes in your queries by appending them to be appended to the parameter name to allow filtering/searching by range.

  • .eq - equal (case-sensitive)
  • .not_eq - not equal (case-sensitive)
  • .gt - greater than
  • .gte - greater than or equal
  • .lt - less than
  • .lte - less than or equal

...