Client APIOperationsMaintenance OperationsIndexesDelete IndexOperations: How to Delete an Index C#Java DeleteIndexOperation is used to remove an index from a database.Syntaxpublic DeleteIndexOperation(string indexName)ParametersindexNamestringname of an index to deleteExamplestore.Maintenance.Send(new DeleteIndexOperation("Orders/Totals"));