Delete Cost Rate Energy Cost ---------------------------- Delete an existing **energy cost interval**. **Request** - Method: ``DELETE`` - Path: ``/api/dynamic_pricing/cost_rate_energy_cost/{uuid}`` **Path parameters** .. list-table:: :widths: 25 15 60 :header-rows: 1 * - Name - Type - Description * - uuid - string - UUID of the energy cost interval to delete. **Example request** .. code-block:: bash curl --location --request DELETE \ 'https://example.beenergised.cloud/api/dynamic_pricing/cost_rate_energy_cost/' \ --header 'x-api-token: ' **Response (200)** .. code-block:: json { "status": "ok", "message": "Energy cost was successfully deleted." } **Error responses** - ``404``: Energy cost interval not found. .. code-block:: json { "status": "error", "message": "Cost rate interval not found" } - ``500``: Generic server error. .. code-block:: json { "status": "error", "message": "Internal Server Error" }