I am trying to filter out orders that came in before the current day, so I'm wondering what the difference is between the createdTime and clientCreatedTime properties of an order. I already filter by modifiedTime to get the most recently modified orders for display, and still end up with 30-day-old orders when some trivial update to the order happens.
I know when saving/completing one order, the next order is created. At least, the 'CREATE' webhook fires for the next order number in line to be used. Does one of these fields correspond to that creation time, while the other corresponds to when it is actually first interacted with by the merchant? I would like to make sure that I am not missing an order that was programmatically created by the system the night before, but is the first order in line for the day's business.