What does 409 error in case of delete in calendar API mean?

481 Views Asked by At

I can understand that 409 means duplicate entry in case of addition of events. But what does it signify when we try to delete an event? In case the event is already deleted I am getting 410(Gone) and I understand that perfectly. I am using Google calendar API for android.

1

There are 1 best solutions below

1
Kvaibhav01 On

As per the official docs error 409 means:

The requested identifier already exists. An instance with the given ID already exists in the storage.

Possible solution:

Generate a new ID if you want to create a new instance, otherwise use the update method call.