Delete Cost Rate Time Cost -------------------------- Deletes a time-based cost interval by its UUID within the current mandant. \ **Request** - Method: ``DELETE`` - Path: ``/api/dynamic_pricing/cost_rate_time_cost/{uuid}`` **Path parameters** .. list-table:: :widths: 20 15 65 :header-rows: 1 * - Name - Type - Description * - uuid - string - UUID of the time cost interval to delete. **Example request** .. code-block:: bash curl --location --request DELETE 'https://example.beenergised.cloud/api/dynamic_pricing/cost_rate_time_cost/' \ --header 'x-api-token: ' **Response (200)** .. code-block:: json { "status": "ok", "message": "Time cost deleted successfully" } **Error responses** - ``400``: Validation error. .. code-block:: json { "status": "error", "message": "" } - ``404``: 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" }