SiteConfiguration
device_list object[]required
- AcChargingPole3Phase
- DcChargingPole
- ForecastedThreePhaseDevice
The name of the device itself. This value will be used as the asset ID in the rest of the API.
The name of the collector to which this device is connected.
charging_pole_3phasecharging_pole_3phaseThe line current in Ampere.
pin_to_phase_mapping objectrequired
Defines how charging pole pins map to the collectors' phases. For more information see the 'Key Concepts - Site configuration' section in the documentation.
Possible values: [pin1, pin2, pin3]
Possible values: [L1, L2, L3]
The name of the device itself. This value will be used as the asset ID in the rest of the API.
The name of the collector to which this device is connected.
dc_charging_poledc_charging_poleThe maximum power in Watt for the charging pole itself / connection to the charging pole.
The name of the device itself. This value will be used as the asset ID in the rest of the API.
The name of the collector to which this device is connected.
forecasted_series_3phaseforecasted_series_3phaseThe line current in Ampere.
Defines the type of forecast to be used for this device.
Possible values: [pv, load]
collector_list object[]required
children object
The children of this collector. This is used to create a tree structure.
- array
- null
phase_permutations object
If the phase naming conventions (L1, L2, L3) are not consistent between parent and child, specify the phase mapping between them.
- PinToPhasePermutation
- null
The line current in Ampere.
line_voltage objectdeprecated
Deprecated: use phase_voltage instead.
- integer
- null
phase_voltage object
The phase voltage in Volt.
- integer
- null
electricitySpecifies whether the collector is single-phase (1P) or three-phase (3P).
Possible values: [1P, 3P]
{
"device_list": [
{
"name": "LR34_001",
"collector": "main_collector",
"type": "charging_pole_3phase",
"line_current": 0,
"pin_to_phase_mapping": {
"pin_list": [
"pin1"
],
"phase_list": [
"L1"
]
}
},
{
"name": "LR34_001",
"collector": "main_collector",
"type": "dc_charging_pole",
"max_power": 250000
},
{
"name": "LR34_001",
"collector": "main_collector",
"type": "forecasted_series_3phase",
"line_current": 0,
"forecast_type": "pv"
}
],
"collector_list": [
{
"name": "string",
"children": [
null
],
"phase_permutations": {
"parent": [
"string"
],
"child": [
"string"
]
},
"line_current": 0,
"phase_voltage": 0,
"commodity": "electricity",
"1P_3P": "1P"
}
]
}