Delete Recurring Pricing Config --------------------------------- Delete a recurring (weekday-based) pricing schedule by UUID. On success, \ the response confirms the deletion. **Request** - Method: ``DELETE`` - Path: ``/api/dynamic_pricing/recurring_pricing_config/{uuid}`` **Path parameters** .. list-table:: :widths: 20 15 65 :header-rows: 1 * - Name - Type - Description * - uuid - string - UUID of the recurring pricing schedule to delete. **Example request** .. code-block:: bash curl --location --request DELETE 'https://example.beenergised.cloud/api/dynamic_pricing/recurring_pricing_config/' \ --header 'x-api-token: ' **Response (200)** .. code-block:: json { "status": "ok", "message": "Recurring pricing config deleted successfully" } **Error responses** - ``404``: Cost rate or recurring pricing config not found. .. code-block:: json { "status": "error", "message": "Cost rate not found" } - ``400``: Validation error \ (e.g., the cost rate does not use recurring weekday pricing). .. code-block:: json { "status": "error", "message": "" } - ``500``: Generic server error. .. code-block:: json { "status": "error", "message": "Internal Server Error" }