Inverter Object
Information about the inverter(s) used in the system.
Table of Inverter Object
Value Name | Description | Value Type |
---|---|---|
id | Unique identifier for the panel. | integer |
company_id | ID of the company providing the panel. | integer |
name | The name of the panel model. | string |
model | The model name of the panel. | string |
manufacturer | The company that manufactures the panel. | string |
meta_data | Additional metadata related to the panel. | object |
max_efficiency | The maximum efficiency of the inverter. | float |
created_at | Timestamp when the panel record was created. | string |
updated_at | Timestamp when the panel record was last updated. | string |
is_microinverter | Indicator if the inverter is a microinverter. | integer |
all_offices | Indicator if the panel is available to all offices. With 0 equaling False and 1 equaling True | integer |
all_markets | Indicator if the panel is available to all markets. With 0 equaling False and 1 equaling True | integer |
all_dealers | Indicator if the panel is available to all dealers. With 0 equaling False and 1 equaling True | integer |
all_lenders | Indicator if the panel is available to all lenders. With 0 equaling False and 1 equaling True | integer |
active | Indicator if the panel is active. With 0 equaling False and 1 equaling True | integer |
price_adder | Additional cost associated with this panel, if any. | integer |
fixed_cost | The fixed cost of the inverter. | string |
crm_id | CRM identifier for the panel. | string |
Below is an Example of Inverter Object
"inverter": {
"id": 0000,
"company_id": 0000,
"name": "Inverter Man.: Inverter Model",
"model": "Inverter Model",
"manufacturer": "Inverter Man.",
"meta_data": {
"aurora_name": null,
"nominal_rating": null,
"solo_inverter_id": "194",
"exclude_from_rebate": null,
"sighten_inverter_id": null,
"sunnova_inverter_id": null,
"dividend_inverter_id": null,
"sunnova_inverter_name": null,
"dividend_inverter_name": null,
"solar_success_inverter_id": null,
"solar_success_inverter_name": null
},
"max_efficiency": 0.97,
"created_at": "2023-01-28 00:35:33",
"updated_at": "2023-04-24 17:51:14",
"is_microinverter": 1,
"all_offices": 0,
"all_markets": 1,
"all_dealers": 1,
"all_lenders": 1,
"active": 1,
"price_adder": null,
"fixed_cost": "0.00",
"crm_id": null
}
Updated 3 months ago