Skip to main content
POST
/
v3
/
sites
/
{site}
/
groups
/
{siteGroup}
/
subgroups
Create Subgroup
curl --request POST \
  --url https://app.plugchoice.com/api/v3/sites/{site}/groups/{siteGroup}/subgroups \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "total_amps": 123,
  "charger_uuids": [
    "<string>"
  ]
}
'
Creates a new subgroup under an existing load balancing group. Optionally assigns chargers to the new subgroup.
site
string
required
The UUID of the location.
siteGroup
integer
required
The ID of the parent group.
total_amps
integer
required
The total available amperage for the subgroup. Minimum value is 1.
charger_uuids
string[]
An array of charger UUIDs to assign to the new subgroup.