Results 137 comments of jumpjack

Can you try "/commerce/v1/accounts/{accountId}/kamereon/kcm/v1/vehicles/{vin}/ev/soc-levels"?

Forget charging-start, you must use "actions/charge-mode" with this payloads: Start charging: ``` { "data": { "type": "ChargeMode", "attributes": { "action": "always_charging" } } } ``` Stop charging: ``` { "data":...

Good question. I didn't verify that, I always stopped by hand directly on the car, but I think you are right: if you use this method, you'll have to switch...

My new discoveries: { "data": { "type": "ChargingStart", "attributes": { "action": PARAMETER } } } PARAMETER value --> server response: 0 --> ``` { "data": { "type": "ChargingStart", "id": "ea11e720-b9f2-47bf-bcf3-3031bb364bb5",...

As far as I can understand, you can use "raw values" 0, 1 or 2, or the equivalent strings "start", "pause" and "resume", but "start" is only for **/actions/charging-start** endpoint,...

Ok here it is (but no tested yet): /commerce/v1/accounts/**ACCOUNT**/kamereon/kcm/v1/vehicles/**VIN**/charge/pause-resume payload: `{"data":{"type": "ChargePauseResume","attributes": { "action": "pause" } }}`