Searching

This page will help you get started with Swoogo. You'll be up and running in a jiffy!

When querying the API for all of an object type for example, querying for all events you can optionally provide a search parameter to narrow down the result set. This takes the form of the attribute you are searching on, the search operator, and the value to search for.

Available Search Operators

  • = Equal to
  • != Not equal to
  • > Greater than
  • < Less than
  • >= Greater than or equal to
  • <= Less than or equal to
  • like Contains a substring
  • not like Does not contain a substring

To specify multiple search operators, simply comma-separate them. For example, to search for events where name is equal to "Test Event" and id is not equal to 100, you would pass the following string as the search parameter:

name=Test Event,id!=100

What’s Next