POST
/
api
/
v3
/
chargers
/
{charger_uuid}
/
setup
Setup a charger
curl --request POST \
  --url https://cloud.volttime.com/api/v3/chargers/{charger_uuid}/setup \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "group": 16,
  "net_type": "TT",
  "phases": 3,
  "phase_rotation": "RST",
  "max_current": 77
}'
{
  "message": "Charger setup successfully completed, the charger will now restart."
}

Authorizations

Authorization
string
header
required

See the documentation for more information.

Path Parameters

charger_uuid
string
required

Body

application/json
phases
enum<integer>
required
Available options:
1,
3
Example:

3

max_current
integer
required

Must be at least 6.

Example:

77

group
integer

The <code>id</code> of an existing record in the site_groups table.

Example:

16

net_type
enum<string>
Available options:
TN,
TT,
IT
Example:

"TT"

phase_rotation
enum<string> | null
Available options:
R,
RST,
RTS,
S,
SRT,
STR,
T,
TRS,
TSR
Example:

"RST"

Response

Charger setup successfully completed

message
string
Example:

"Charger setup successfully completed, the charger will now restart."