How to Stop Charging

To stop charging, you need the unique identifier for the charging session. You can get this unique identifier using different API calls like from the response of a remoteStart. Another way would be to retrieve all of a user’s charging sessions using the chargelogsPaged API call.

Regardless of how you find a charging session, you need the unique identifier to stop a charging session. Use this as the argument for the API call remoteStop.

mutation remoteStop {
  remoteStop(transaction: "012b05111-d0a8-1234-12p3-9ec33d133691") {
    status
    code
    message
  }
}