Limitations¶
Pagination¶
All collection GET methods are limited to a result set of 100 records and support paging by means of the “page” querystring parameter. Omission of this parameter will attempt to return all results; this is not guaranteed to work.
GET /purchases?page=2
To retreive the entire set, start with page=1 and increment the page parameter until you recieve the response:
{“status”: “NOTFOUND”}
Time Zone¶
All datetime parameters are assumed to be in your account’s time zone. You can specify a different time zone by using a datetime format that includes a time zone such as RFC 3389/ISO 8601 (2004-02-12T15:19:21+00:00) or RFC 2822 (Thu, 21 Dec 2000 16:01:07 +0200).