Skip to main content
POST
/
v3
/
chargers
/
{charger}
/
actions
/
clear-charging-profile
Clear Charging Profile
curl --request POST \
  --url https://app.plugchoice.com/api/v3/chargers/{charger}/actions/clear-charging-profile \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "id": 123,
  "connector_id": 123,
  "charging_profile_purpose": "<string>",
  "stack_level": 123
}
'
{
  "status": "<string>"
}
Sends a ClearChargingProfile command to the charger. All parameters are optional filters — if none are provided, all charging profiles are cleared.
charger
string
required
The UUID of the charger.
id
integer
The ID of the charging profile to clear.
connector_id
integer
The connector ID to clear profiles for. Must be 0 or greater.
charging_profile_purpose
string
Filter by purpose. One of ChargePointMaxProfile, TxDefaultProfile, or TxProfile.
stack_level
integer
Filter by stack level. Must be 0 or greater.

Response

status
string
The response status from the charger (e.g., Accepted, Unknown).