# List Chargers Return the list of chargers for the given tenant Endpoint: GET /tenant/{tenant}/charger Version: 1.0.0 Security: bearerToken ## Path parameters: - `tenant` (string, required) ## Response 200 fields (application/json): - `id` (integer) Unique identifier for the charger Example: 1 - `tenantId` (integer) ID of the tenant that owns this charger Example: 1 - `profileId` (integer) ID of the configuration profile associated with this charger Example: 1 - `displayName` (string) User-friendly name for the charger Example: "My Charger" - `provisioned` (boolean) Indicates whether the charger has been provisioned and configured - `identity` (string) Unique identity string used for OCPP communication Example: "TEST" - `chargeBoxSerialNumber` (string) Serial number of the charge box hardware Example: 12345 - `chargePointSerialNumber` (string) Serial number of the charge point Example: 12345 - `meterSerialNumber` (string) Serial number of the integrated energy meter - `chargePointModel` (string) Model identifier of the charge point Example: "KC-P30-EC2404B2-E00" - `chargePointVendor` (string) Manufacturer or vendor of the charge point Example: "Keba AG" - `firmwareVersion` (string) Current firmware version running on the charger Example: "1.0.0" - `iccid` (string) Integrated Circuit Card Identifier for the SIM card (if applicable) - `imsi` (string) International Mobile Subscriber Identity for cellular connectivity (if applicable) - `meterType` (string) Type or model of the energy meter - `status` (any) Current operational status of the charger Enum: "BLOCKED", "NONE" - `createdAt` (string) Timestamp when the charger record was created Example: "2025-10-15T15:19:50.834Z" - `updatedAt` (string) Timestamp when the charger record was last updated Example: "2025-10-15T15:19:50.834Z" - `deletedAt` (string) Timestamp when the charger record was soft-deleted (null if active) Example: "2025-10-15T15:19:50.834Z" - `profileName` (string) Name of the configuration profile associated with this charger Example: "Loadtest Profile" - `chargerConnected` (boolean) Indicates whether the charger is currently connected to the platform - `cpmsConnected` (boolean) Indicates whether the charger is currently connected to the CPMS backend - `cpmsName` (string) Name of the CPMS backend this charger is connected to Example: "MyCPMS" - `cpmsUrl` (string) WebSocket URL of the CPMS backend this charger is connected to Example: "wss://cpms.exolink.com"