Unpair a paired charger
In case a charger has been removed from a CSMS, or access to Stekker is revoked, an unpair notification should be sent to the Stekker API. This will remove the charger from the Stekker account and prevent further communication. Any active sessions related to the charger will be stopped in Stekker.
PUT/api/v1/events
Event: ChargePointUnPairNotification
- Name
chargePointId
- Type
- string
- Description
The ID of the charge point to be unpaired.
Request
curl --location --request PUT 'https://api.stekker.app/api/v1/events' \
--header 'Authorization: Token provided-secret' \
--header 'Content-Type: application/json' \
--data-raw '{
"event": "ChargePointUnPairNotification",
"chargePointId": 6,
"ocppIdentity": "TEST_1234",
}
'