# List Faults Lists all system fault events with detailed error information, categorized by charger. Supports filtering by charger ID and date range, with pagination. Endpoint: GET /report/faults Version: v1 Security: BearerAuth ## Query parameters: - `created_at__range` (string) Filter by creation date range - `created_at__gte` (string) Filter by creation date (minimum) - `created_at__lte` (string) Filter by creation date (maximum) - `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.charger` (string) Charger identifier - `results.charger_id` (string) Charger ID - `results.created_at` (string) When the fault was created - `results.error_code` (string) Error code - `results.error_info` (string) Detailed error information - `results.status` (string) Current status