Skip to main content
PUT
/
api
/
v3
/
chargers
/
{charger_uuid}
/
connectors
/
{connector_id}
Update connector
curl --request PUT \
  --url https://app.plugchoice.com/api/v3/chargers/{charger_uuid}/connectors/{connector_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "phase_rotation": "RS",
  "max_amperage": 1
}
'
{
  "data": {
    "id": 1,
    "charger_id": 1,
    "connector_id": 1,
    "status": "Unavailable",
    "error": "NoError",
    "error_info": null,
    "vendor_id": null,
    "vendor_error_code": null,
    "max_amperage": null,
    "max_voltage": null,
    "standard": null,
    "format": null,
    "power_type": null,
    "phase_rotation": null,
    "created_at": "2026-01-10T01:14:32.000000Z",
    "updated_at": "2026-01-10T01:14:32.000000Z"
  }
}

Authorizations

Authorization
string
header
required

See the documentation for more information.

Path Parameters

charger_uuid
string
required
connector_id
string
required

The ID of the connector.

Body

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

"RS"

max_amperage
integer
required

Must be at least 1. Must not be greater than 1000.

Example:

1

Response

200 - application/json
data
object