Get Unique Pricing Configs --------------------------- Retrieve all unique-date pricing configs for a cost rate. The cost rate \ must have ``dynamic_pricing`` set to ``2`` (exact date and time). Each \ config contains a name, UUID, and start time. **Request** - Method: ``GET`` - Path: ``/api/dynamic_pricing/unique_pricing_config/{cost_rate_uuid}`` **Path parameters** .. list-table:: :widths: 20 15 65 :header-rows: 1 * - Name - Type - Description * - cost_rate_uuid - string - UUID of the cost rate to retrieve unique-date configs for. **Example request** .. code-block:: bash curl --location --request GET 'https://example.beenergised.cloud/api/dynamic_pricing/unique_pricing_config/' \ --header 'x-api-token: ' **Response (200)** .. code-block:: json { "data": [ { "uuid": "", "name": "New Year Special", "start_time": "2026-01-01 00:00:00" } ] } **Error responses** - ``404``: Cost rate or unique 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 unique-date pricing). .. code-block:: json { "status": "error", "message": "" } - ``500``: Generic server error. .. code-block:: json { "status": "error", "message": "Internal Server Error" }