Skip to main content
GET
/
v3
/
sites
/
{site}
/
connectors
List Connectors
curl --request GET \
  --url https://app.plugchoice.com/api/v3/sites/{site}/connectors \
  --header 'Authorization: Bearer <token>'
{
  "id": 123,
  "charger_id": 123,
  "connector_id": 123,
  "status": "<string>",
  "error": "<string>",
  "error_info": "<string>",
  "vendor_id": "<string>",
  "vendor_error_code": "<string>",
  "max_amperage": 123,
  "max_voltage": 123,
  "standard": "<string>",
  "format": "<string>",
  "power_type": "<string>",
  "phase_rotation": "<string>",
  "charger": {
    "uuid": "<string>",
    "id": 123,
    "identity": "<string>",
    "connection_status": "<string>",
    "status": "<string>"
  },
  "created_at": "<string>",
  "updated_at": "<string>"
}
Returns a paginated list of all connectors across all chargers for the specified location. Each connector includes its parent charger information. Results are paginated with 25 items per page.
site
string
required
The UUID of the location.

Response

id
integer
The numeric ID of the connector.
charger_id
integer
The ID of the parent charger.
connector_id
integer
The OCPP connector ID.
status
string
The current connector status.
error
string
The current error code, if any.
error_info
string
Additional error information, if any.
vendor_id
string
The vendor identifier.
vendor_error_code
string
The vendor-specific error code, if any.
max_amperage
integer
The maximum amperage of the connector.
max_voltage
integer
The maximum voltage of the connector.
standard
string
The connector standard (e.g., IEC 62196).
format
string
The connector format (e.g., Socket, Cable).
power_type
string
The power type (e.g., AC_1_PHASE, AC_3_PHASE, DC).
phase_rotation
string
The phase rotation configuration.
charger
object
The parent charger object.
created_at
string
ISO 8601 timestamp of when the connector was created.
updated_at
string
ISO 8601 timestamp of when the connector was last updated.