> ## 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 Socket Lock Status

Returns the current socket lock status for the specified charger. When the socket is locked, the charging cable is held in place and cannot be removed.

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

## Response

<ResponseField name="enabled" type="boolean">
  Whether the socket is currently locked.
</ResponseField>

<ResponseField name="interactable" type="boolean">
  Whether the socket lock can be toggled right now. This is `true` when the socket is already locked or when a cable is physically inserted (the connector is in a `Preparing`, `Charging`, `SuspendedEV`, `SuspendedEVSE`, or `Finishing` state).
</ResponseField>

<ResponseField name="error" type="string">
  A human-readable error message. Only present when the setting could not be read, for example when the charger is offline. When present, `enabled` and `interactable` are returned as `false`.
</ResponseField>
