diff --git a/manager/handlers/ocpp201/routing.go b/manager/handlers/ocpp201/routing.go index 06b0d2f..6bf4bb8 100644 --- a/manager/handlers/ocpp201/routing.go +++ b/manager/handlers/ocpp201/routing.go @@ -278,6 +278,13 @@ func NewRouter(emitter transport.Emitter, ResponseSchema: "ocpp201/UnclockConnectorResponse.json", Handler: UnlockConnectorResultHandler{}, }, + "SetChargingProfile": { + NewRequest: func() ocpp.Request { return new(ocpp201.SetChargingProfileRequestJson) }, + NewResponse: func() ocpp.Response { return new(ocpp201.SetChargingProfileResponseJson) }, + RequestSchema: "ocpp201/SetChargingProfileRequest.json", + ResponseSchema: "ocpp201/SetChargingProfileResponse.json", + Handler: SetChargingProfileResultHandler{}, + }, }, } }