sync-engine icon indicating copy to clipboard operation
sync-engine copied to clipboard

Cannot use `show_canceled` param for calendar events

Open KartikTalwar opened this issue 9 years ago • 0 comments
trafficstars

There is definitely more than 1 thing to report in this issue but here is what I have done:

  • Created an event on google calendar
    • Took around 10 mins to show on the api after creating (is this normal?)
  • Deleted the event on google calendar

Ran a query with the following parameters:

    params = {
              'calendar_id': "my_cal_id",
              'expand_recurring': True,
              'show_canceled' : True,
              'starts_after': 123,
              'ends_before' : 456
              }

The documentation shows that expand_recurring and show_canceled are allowed params but I get the following error.

{'message': "Unexpected query parameters set(['show_canceled'])",
 'type': 'invalid_request_error'}

KartikTalwar avatar Jan 04 '16 06:01 KartikTalwar