Skip to main content

EVSEMapPoint

Simplified EVSE representation for map rendering

uidstring

Unique identifier for the EVSE. Used to fetch full EVSE details.

capabilitiesstring[]

List of EVSE capabilities. Indicates supported features like RFID, credit card, etc.

connectors ConnectorMapPoint[]

Simplified connector data for map display. Contains only essential connector information.

  • Array [
  • uidstring

    Unique identifier for the connector. Used to fetch full connector details.

    power_typestring

    Type of power (AC or DC). Used for filtering and display.

    statusstring

    Current operational status. For example: AVAILABLE, CHARGING, OUTOFORDER.

    is_enabledboolean

    Whether the connector is enabled for use. Disabled connectors cannot start new sessions.

    is_publishedboolean

    Whether the connector should be shown on maps. Unpublished connectors are hidden from public views.

    onlineboolean

    Whether the connector is currently online (null if not supported). Indicates real-time connectivity status.

  • ]
  • EVSEMapPoint
    {
    "uid": "string",
    "capabilities": [
    "string"
    ],
    "connectors": [
    {
    "uid": "string",
    "power_type": "string",
    "status": "string",
    "is_enabled": true,
    "is_published": true,
    "online": true
    }
    ]
    }