Skip to main content

LocationMapPoint

Simplified location representation optimized for map rendering

uidstring

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

coordinates Coordinates

Represents a geographic point using decimal degrees

latitudestring

Latitude of the point in decimal degree. Example: 50.770774. Must have 5-7 decimal places.

longitudestring

Longitude of the point in decimal degree. Example: -126.104965. Must have 5-7 decimal places.

entity_codestring

Entity code of the CPO that owns this location. Used for filtering and branding.

evses EVSEMapPoint[]

Simplified EVSE data for map display. Contains only essential information for map markers.

  • Array [
  • 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.

  • ]
  • ]
  • LocationMapPoint
    {
    "uid": "string",
    "coordinates": {
    "latitude": "string",
    "longitude": "string"
    },
    "entity_code": "string",
    "evses": [
    {
    "uid": "string",
    "capabilities": [
    "string"
    ],
    "connectors": [
    {
    "uid": "string",
    "power_type": "string",
    "status": "string",
    "is_enabled": true,
    "is_published": true,
    "online": true
    }
    ]
    }
    ]
    }