The documentation is a little light on how to filter using the where operator.
Could someone share an example of how to filter using multiple fields? For example, I have an entity "Location" and I want to see only the results where the brand is McDonalds. I've tried a variety of ways to pass in what the docs say "where - (array) filters;" with no success:
https://connectiv.espocloud.com/api/v1/location?where=["brand": "McDonalds"]
https://connectiv.espocloud.com/api/v1/location?where:["brand": "McDonalds"]
https://connectiv.espocloud.com/api/v1/location?where=["brand"="McDonalds"]
https://connectiv.espocloud.com/api/v1/location?where=["brand"="McDonalds"]
Can someone share the syntax here?
Thanks
Mike
Comment