I used to get Calendar Name using Calendar ID with the below API call:
https://www.googleapis.com/calendar/v3/calendars/877rak5vqdsj68q52tehukeopg@group.calendar.google.com
And then I get a response like
{
""""kind"""": """"calendar#calendar"""",
""""etag"""": """"\""""ULsH1YPfrSsaWJsYynxh4efocZw/z3mgue7ZR46jHMp-7DrpcXUmmDY\"""""""",
""""id"""": """"877rak5vqdsj68q52tehukeopg@group.calendar.google.com"""",
""""summary"""": """"HELLO"""",
""""description"""": """"HELLO"""",
""""timeZone"""": """"UTC"""",
""""conferenceProperties"""": {
""""allowedConferenceSolutionTypes"""": [
""""eventHangout""""
]
}
}
Now how can I know the status of this calendar, whether it is deleted or not through Google Calendar API. Please help me.