Skip to main content
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": "IT",
  "phases": 3,
  "phase_rotation": "TS",
  "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> | null
Available options:
TN,
TT,
IT
Example:

"IT"

phase_rotation
enum<string> | null
Available options:
RST,
RTS,
SRT,
STR,
TRS,
TSR,
RS,
RT,
SR,
ST,
TR,
TS,
R,
S,
T
Example:

"TS"

Response

Charger setup successfully completed

message
string
Example:

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

I