# Charger Port Charger Ports represent the individual connector points where vehicles can be connected for charging. Use these endpoints to: - List all available charger ports across your network - Get detailed information about specific ports - Update port settings and configurations - Reserve ports for future use - Start and stop charging sessions - Cancel reservations Each charger port belongs to a parent charger and can have different connector types (J1772, CCS, CHADEMO, etc.) and power capacities. Ports also maintain status information about current charging activities. ## List Charger Ports - [GET /charger-port](https://docs.epiccharging.com/apis/charger-port/charger-port_list.md): Retrieves a list of all charger ports with their current status and connector information. This endpoint supports filtering by parameters like status and charger. ## Permissions Requires a valid API key with read permissions for charger ports. ## Get Charger Port Details - [GET /charger-port/{id}](https://docs.epiccharging.com/apis/charger-port/charger-port_read.md): Gets detailed information about a specific charger port by ID, including connector specifications and active session details. Requires a valid API key. ## Update Charger Port - [PATCH /charger-port/{id}](https://docs.epiccharging.com/apis/charger-port/charger-port_partial_update.md): Updates specific fields of a charger port, such as status or configuration settings. Requires a valid API key. ## Cancel Reservation - [PATCH /charger-port/{id}/cancel_reservation](https://docs.epiccharging.com/apis/charger-port/charger-port_cancel_reservation.md): Cancels the reservation for charger port. The reservation_id must be provided. ## Reserve Charger Port - [PATCH /charger-port/{id}/reserve_now](https://docs.epiccharging.com/apis/charger-port/charger-port_reserve_now.md): Reserves a charger port. The fields expiry_date_time, id_tag, and reservation_id must be included in the request body. ## Start Charging - [PATCH /charger-port/{id}/start](https://docs.epiccharging.com/apis/charger-port/charger-port_start.md): Start a charger port to begin charging. ## Stop Charging - [PATCH /charger-port/{id}/stop](https://docs.epiccharging.com/apis/charger-port/charger-port_stop.md): Stop a charger port to end charging.