EVSEs & Connectors
A charging station's EVSEs and connectors as reported by ingestion — read-only except for a circuit assignment, no direct creation endpoint.
3 endpoints
Lists a charging_station's EVSEs, unpaginated (a 1.6 charging_station has exactly one).
get/v1/charging-stations/{charging_station_id}/evsesRequires a bearer token
Parameters
| Name | In | Type | Description |
|---|---|---|---|
| charging_station_id* | path | string<uuid> | ChargingStation id |
Responses
| Status | Body | Description |
|---|---|---|
| 200 | ListEvsesResponse | The charging_station's EVSEs |
| 401 | ErrorBody | Missing, invalid, or expired bearer token |
| 404 | ErrorBody | No charging_station with this id exists, or the caller cannot access it |
Attaches (or detaches) the circuit feeding this EVSE. Requires the caller to be an Owner or Admin.
patch/v1/charging-stations/{charging_station_id}/evses/{evse_id}/circuitRequires a bearer token
Parameters
| Name | In | Type | Description |
|---|---|---|---|
| charging_station_id* | path | string<uuid> | ChargingStation id |
| evse_id* | path | string<uuid> | EVSE id |
Request bodySetEvseCircuitRequest
| Field | Type | Description |
|---|---|---|
| circuit_id | string | null<uuid> | — |
Responses
| Status | Body | Description |
|---|---|---|
| 200 | EvseSummary | The updated EVSE |
| 401 | ErrorBody | Missing, invalid, or expired bearer token |
| 403 | ErrorBody | The caller is a member but not an Owner or Admin |
| 404 | ErrorBody | No charging_station with this id exists, the caller cannot access it, no EVSE with this id exists on it, or circuit_id does not exist |
Lists an EVSE's connectors, unpaginated.
get/v1/evses/{evse_id}/connectorsRequires a bearer token
Parameters
| Name | In | Type | Description |
|---|---|---|---|
| evse_id* | path | string<uuid> | EVSE id |
Responses
| Status | Body | Description |
|---|---|---|
| 200 | ListConnectorsResponse | The EVSE's connectors |
| 401 | ErrorBody | Missing, invalid, or expired bearer token |
| 404 | ErrorBody | No EVSE with this id exists, or you cannot access its environment |