> ## Documentation Index
> Fetch the complete documentation index at: https://developer.plugchoice.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Display & LED Settings

Returns the current display and LED settings for the specified charger.

<ParamField path="charger" type="string" required>
  The UUID of the charger.
</ParamField>

## Response

<ResponseField name="fields" type="object[]">
  A list of configurable display and LED settings.

  <Expandable title="field">
    <ResponseField name="key" type="string">
      The setting key identifier (e.g., `LightIntensity`).
    </ResponseField>

    <ResponseField name="label" type="string">
      A human-readable label for the setting.
    </ResponseField>

    <ResponseField name="type" type="string">
      The value type (e.g., `integer`, `boolean`).
    </ResponseField>

    <ResponseField name="value" type="string">
      The current value of the setting.
    </ResponseField>

    <ResponseField name="min" type="integer">
      The minimum allowed value (for numeric types).
    </ResponseField>

    <ResponseField name="max" type="integer">
      The maximum allowed value (for numeric types).
    </ResponseField>
  </Expandable>
</ResponseField>
