Link Search Menu Expand Document

Delete API

Once configured a module for a model, DELETE API will be available via http requests.

For instance, take this model as an example

data class Game(
    val name: String,
    val players: Int?): Identifiable()

Configure the module it’s simply done by adding inside startKDone DSL

module<Game>("games")

To delete a document call the endpoint games/:idusing a DELETE request.

Endpoint

games/5e183d4333e63f6731d70b47

Method

DELETE

Result

{
  "deletedCount": 1
}

Copyright © 2021 Dario Pellegrini