Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 5

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

Conditionals

Some endpoint parameters allow the following modifier suffixes 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

For example, this query would find all of the events occurring between May 15 and May 20, 2011:

 

 

/v9/events?occurs_at.gte=2011-05-15&occurs_at.lt=2011-05-20
  • No labels