The Calendar addEvent API doesn't populate the returned event with the newly created object details such as the ID, Subject, etc. The returned object is always empty. Because of this, there's no way to get the newly created event object and perform an update or delete operation. If this is a bug in the API or in our code?
The Calendar addEvent API doesn't populate the returned event with the newly created object details such as the ID, Subject, etc. The returned object is always empty. Because of this, there's no way to get the newly created event object and perform an update or delete operation. If this is a bug in the API or in our code?
//Updates an existing calendar event. -(BOOL)updateEvent { MSOutlookEvent event = [selfgetSampleEvent]; //Get event [[BaseControlleralloc]getMailClient:^(MSOutlookClient *client) { NSURLSessionDataTask task = [[[client getMe] getEvents] addEvent:event withCallback:^(MSOutlookEvent addedEvent, MSODataException error) {
}
Could you please tell us if we're doing anything wrong? How can we get a hold of the newly created object?
Thanks, Uma