deleteRecipe

@DELETE(value = "recipes/{id}")
abstract suspend fun deleteRecipe(@Path(value = "id") id: String): ApiRecipe

Deletes a Recipe item from the API.

Return

The deleted ApiRecipe item.

Parameters

id

The ID of the Recipe item to delete.