When making a date-based conditional request such as http://api.ticketevolution.com/offices?updated_at.gte= if a datetime is provided is the time portion used or does the API only utilize the date portion?
2 comments
-
Tyler Hunt Yes, the time portion will be used.
-
Permanently deleted user I’m seeing evidence to the contrary.
if I run a query and then run the same one a few minutes later (with a new updated_at.gte) I get the same results. I would expect that the second run would yield different results.
These return the same results:
GET /venues?page=1&per_page=100&updated_at.gte=2011-09-06T16%3A15%3A08-07%3A00 HTTP/1.1
Host: api.ticketevolution.com
Connection: close
Accept-encoding: gzip, deflate
User-Agent: TicketEvolution_Webservice
X-Token: [MY_TOKEN]
Accept: application/vnd.ticketevolution.api+json; version=6
X-Signature: [MY_COMPUTED_SIGNATURE]GET /venues?page=1&per_page=100&updated_at.gte=2011-09-06T16%3A17%3A22-07%3A00 HTTP/1.1
Host: api.ticketevolution.com
Connection: close
Accept-encoding: gzip, deflate
User-Agent: TicketEvolution_Webservice
X-Token: [MY_TOKEN]
Accept: application/vnd.ticketevolution.api+json; version=6
X-Signature: [MY_COMPUTED_SIGNATURE]