Update Job System POST
Request Parameters
| Parameter | Type | Is Required? | Note | Example |
|---|---|---|---|---|
id | String | Yes | "GWT383595" | |
system | Hash | No | See system params info | { "installation_type": "new_system", "connected_type": "on-grid", ... } |
System params info
| Parameter | Type | Is Required? | Note |
|---|---|---|---|
installation_type | String | Yes | Type of Installation: "new_system" "replacement_system" "extension_system" "additional_system" |
connected_type | String | Yes | Type of Connected: "on-grid" "off-grid" |
is_battery | String | Yes | The system has a battery storage? is_battery=true batteries is required; is_battery=false the batteries will not be saved |
install_date | Date | Yes | Installation date. Cannot update the parameter after panel installed. |
install_on_building | Boolean | Yes | System mounting type: true = install on building or structure; false = Ground mounted or free standing |
deemed_years | Int | No | default 13 |
additional_capacity_details | String | Yes | required when type is "extension_system" or "additional_system" |
install_additional_information | String | No | |
inverters | Array | No | See inverters params info |
panels | Array | No | See panels params info |
batteries | Array | No | See batteries params info |
Panels params info
| Parameter | Type | Is Required? | Note |
|---|---|---|---|
brand_id | Int | Yes | brand id, see get panel brands |
watts_per | String | Yes | See get panel brands |
qty | Int | Yes |
Inverters params info
| Parameter | Type | Is Required? | Note |
|---|---|---|---|
brand_id | Int | Yes | See get inverter brands |
qty | Int | Yes |
Batteries params info
| Parameter | Type | Is Required? | Note |
|---|---|---|---|
brand_id | Int | Yes | See get battery storages |
qty | Int | Yes |
Request Example
{
"client_id": "23565656e63f33016ad7f4f338a6f70be78c136addbbb9c803d09756c6ee93f1",
"signature": "2dc1b977b376a2fd26bf05c1f15da59b",
"timestamp": "2019-08-02T10:31:50+11:00",
"id": "GWT383595",
"system": {
"installation_type": "new_system",
"connected_type": "on-grid",
"is_battery": "true",
"install_date": "2019-08-05",
"install_on_building": "true",
"additional_capacity_details": "6 new panels replaced to old system",
"panels": [
{
"brand_id": 1001,
"watts_per": "12",
"qty": 1
}
],
"inverters": [
{
"brand_id": 84,
"qty": 1
}
],
"batteries": [
{
"brand_id": 3433,
"qty": 1
}
]
}
}Response Example
See Get Stc Job Response