Get Cost Rate --------------- Retrieve a single cost rate by UUID within the current mandant. The response \ returns the cost rate's name, description, currency, and automatic stop \ configuration. **Request** - Method: ``GET`` - Path: ``/api/dynamic_pricing/cost_rate/{uuid}`` **Path parameters** .. list-table:: :widths: 20 15 65 :header-rows: 1 * - Name - Type - Description * - uuid - string - Cost rate UUID to fetch. **Example request** .. code-block:: bash curl --location --request GET 'https://example.beenergised.cloud/api/dynamic_pricing/cost_rate/' \ --header 'x-api-token: ' **Response (200)** .. code-block:: json { "data": { "uuid": "", "name": "My cost rate", "description": "Optional description", "currency": "EUR", "auto_stop_minutes": 120, "auto_stop_costs": 25.5 } } **Error responses** - ``500``: Generic server error. .. code-block:: json { "status": "error", "message": "Internal Server Error" }