PUT
/
api
/
v3
/
sites
/
{site_uuid}
/
groups
/
{siteGroup_id}
curl --request PUT \
  --url https://cloud.volttime.com/api/v3/sites/{site_uuid}/groups/{siteGroup_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "method": "solar",
  "solar_additional_amps": 27,
  "solar_always_charge": true,
  "solar_always_charge_amps": 39,
  "peak_shaving_enabled": true,
  "peak_shaving_threshold": 84
}'
{
  "data": {
    "id": 3,
    "site_id": 10,
    "group_id": null,
    "meter_id": null,
    "total_amps": 28,
    "method": "boost",
    "solar_additional_amps": 0,
    "solar_always_charge": false,
    "solar_always_charge_amps": 0,
    "peak_shaving_enabled": false,
    "peak_shaving_threshold": 0,
    "created_at": "2025-05-02T11:43:24.000000Z",
    "updated_at": "2025-05-02T11:43:24.000000Z"
  }
}

Authorizations

Authorization
string
header
required

See the documentation for more information.

Path Parameters

site_uuid
string
required
siteGroup_id
integer
required

The ID of the siteGroup.

Body

application/json

Response

200 - application/json

The response is of type object.