Is there some kind of way to query the API for results within a range of timestamps? For example, let's say that I wanted to get every single submission with a create_ts value created on the date of October 2, 2012. I would want to somehow send to the API the following two requirements:
filter[fields][create_ts] >= "2012-10-02T00:00:00Z"
filter[fields][create_ts] < "2012-10-03T00:00:00Z"
Is there any way to do this?