GET
/
api
/
v2
/
teams
/
{team_id}
/
sites
/
{site_id}
/
groups
curl --request GET \
  --url https://cloud.volttime.com/api/v2/teams/{team_id}/sites/{site_id}/groups \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": 15,
      "site_id": 66,
      "group_id": null,
      "meter_id": null,
      "total_amps": 18,
      "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-03-31T12:18:52.000000Z",
      "updated_at": "2025-03-31T12:18:52.000000Z"
    },
    {
      "id": 16,
      "site_id": 67,
      "group_id": null,
      "meter_id": null,
      "total_amps": 26,
      "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-03-31T12:18:52.000000Z",
      "updated_at": "2025-03-31T12:18:52.000000Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

See the documentation for more information.

Path Parameters

team_id
string
required

The ID of the team.

site_id
string
required

The ID of the site.

Response

200 - application/json
data
object[]
Example:
[
  {
    "id": 15,
    "site_id": 66,
    "group_id": null,
    "meter_id": null,
    "total_amps": 18,
    "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-03-31T12:18:52.000000Z",
    "updated_at": "2025-03-31T12:18:52.000000Z"
  },
  {
    "id": 16,
    "site_id": 67,
    "group_id": null,
    "meter_id": null,
    "total_amps": 26,
    "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-03-31T12:18:52.000000Z",
    "updated_at": "2025-03-31T12:18:52.000000Z"
  }
]

Was this page helpful?