I tried using startTime and startTimestamps but the response doesnt seem to be reading this query.
Under docs I saw to use modifiedTime but I'm assuming that would be for when order was modified and not to check for orders within a range.
Really appreciate any help!
def sales_request(time,time2,mid): header = { "accept": "application/json", "authorization": f" Bearer {api_token}" } params = { "limit": "1000", "startTimestamp":"1634097600000", "endTimestamp":"1634169600000" } response = requests.get(url=f"https://api.clover.com/v3/merchants/{mid}/orders",params=params, headers=header) data = response.json()