# List Charger Statuses Retrieves the current operational status of all chargers with detailed port information. Includes counts of chargers in each status category. Endpoint: GET /report/charger-status Version: v1 Security: BearerAuth ## Query parameters: - `charger` (string) Filter by charger UUID - `limit` (integer) Number of results to return per page - `offset` (integer) The initial index from which to return the results ## Response 200 fields (application/json): - `count` (integer, required) - `next` (string,null) - `previous` (string,null) - `results` (array, required) - `results.id` (string) Unique identifier for the charger - `results.charger_health` (string) Health status of the charger - `results.ocpp_protocol_version` (string) Version of the OCPP protocol - `results.operating_voltages` (number) Operating voltage - `results.location` (string,null, required) Location name - `results.meter_type` (string, required) Type of meter - `results.status` (string) Current status of the charger Enum: "DISABLED", "AVAILABLE", "STANDBY", "CHARGING", "OFFLINE", "FAULTED", "RESERVED", "UNAVAILABLE", "UNDEFINED", "NOT_CHARGING", "COMPLETE", "ASLEEP", "STARTING", "STOPPING", "WAITING_CHARGER", "WAITING_VEHICLE", "IN_PROGRESS", "FAILED_START", "FAILED_STOP", "NO_SESSION", "PREPARING", "SUSPENDED_EV", "SUSPENDED_EVSE", "UNPLUGGED", "UNPLUGGED_NOT_CHARGING", "UNPLUGGED_CHARGING", "PLUGGED_IN_NOT_CHARGING", "PLUGGED_IN_SUSPENDED_EV", "PLUGGED_IN_CHARGING", "CHARGING_COMPLETE", "CUSTOM_CHARGER", "CUSTOM_VEHICLE", "FINISHING" - `results.ports` (array, required) List of ports on this charger - `results.ports.id` (string) Unique identifier for the port - `results.ports.connector_id` (integer,null) Connector ID for OCPP - `results.ports.status` (string) Current status of the port Enum: "DISABLED", "AVAILABLE", "STANDBY", "CHARGING", "OFFLINE", "FAULTED", "RESERVED", "UNAVAILABLE", "UNDEFINED", "NOT_CHARGING", "COMPLETE", "ASLEEP", "STARTING", "STOPPING", "WAITING_CHARGER", "WAITING_VEHICLE", "IN_PROGRESS", "FAILED_START", "FAILED_STOP", "NO_SESSION", "PREPARING", "SUSPENDED_EV", "SUSPENDED_EVSE", "UNPLUGGED", "UNPLUGGED_NOT_CHARGING", "UNPLUGGED_CHARGING", "PLUGGED_IN_NOT_CHARGING", "PLUGGED_IN_SUSPENDED_EV", "PLUGGED_IN_CHARGING", "CHARGING_COMPLETE", "CUSTOM_CHARGER", "CUSTOM_VEHICLE", "FINISHING"