After deleting an event, get() call is being successful #1535
Labels
api: calendar
Issues related to the Calendar API API.
priority: p4
type: question
Request for information or clarification. Not an issue.
Environment details
Steps to reproduce
Event event = service.events().insert(calendarId, event).execute();
service.events().delete(calendarId, event.getId()).execute();
event = service.events().get(calendarId, event.getId()).execute();
External references such as API reference guides
https://developers.google.com/calendar/v3/reference/events/insert
https://developers.google.com/calendar/v3/reference/events/delete
https://developers.google.com/calendar/v3/reference/events/get
.get() call should fail right? after deleting the event. But I am able to get a successful response with appropriate details of previously created event.
Thanks!
The text was updated successfully, but these errors were encountered: