Event Deletion

Pre-requisite: The user has to be signed in to perform the following operations.


Delete Events

To delete events, The following method can be used:

  • event (required): The event object to be deleted.
Factory.spaceService.deleteEvents(spaceId: String, request: DeleteEventsRequest) -> IVPublisher<Void>

Get User Deleted Events

To get the list of deleted events, The following method can be used:

  • spaceId (required): The space id for which the deleted events are to be fetched.
Factory.spaceService.getDeletedEvents(spaceId: String) -> IVPublisher<DeletedEventsModel>