Stop charging session

When we receive the StopTransaction event on our API, Stekker sends a push notification to the user with a summary:

This is what the user sees in the Stekker App

A charging session can be stopped by Stekker because the planned charging is completed, or by the driver using an RFID tag/charging card.

POST/your/events

Event: StopTransaction

curl --location --request POST 'https://api.stekker.app/api/v1/events' \
--header 'Authorization: Token provided-secret' \
--header 'Content-Type: application/json' \
--data-raw '{
  "notification": "OcppEvent",
  "protocol": "1.6",
  "chargePointId": "61409f9bad616b6c64c31704",
  "evseId": "NLEFLEV5496770",
  "ocppIdentity": "LIB_6513",
  "event": {
    "method": "StopTransaction",
    "params": {
      "transactionId": 123885164,
      "idTag": "0482A0E28A9999",
      "timestamp": "2022-03-31T13:49:31Z",
      "meterStop": 589950,
      "reason": "Local"
    },
    "response": {
      "idTagInfo": {
        "status": "Accepted",
        "expiryDate": "2031-12-29T13:49:34.906Z"
      }
    }
  }
}'