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 2 Next »

Additional conditions may be passed as query parameters. The following 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.

If you don't know the exact value, you can use the following modifier suffixes in your queries by appending them to the parameter name.

  • 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:

 

 

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