The chat responses are generated using Generative AI technology for intuitive search and may not be entirely accurate. They are not intended as professional advice. For full details, including our use rights, privacy practices and potential export control restrictions, please refer to our Generative AI Service Terms of Use and Generative AI Service Privacy Information. As this is a test version, please let us know if something irritating comes up. Like you get recommended a chocolate fudge ice cream instead of an energy managing application. If that occurs, please use the feedback button in our contact form!
Skip to content
DepotFinity

DepotFinity is a cloud-based software service that is used to monitor, report, schedule and manage the charging operations of chargers within a depot.

Force Termination API¶

The Force Termination API allows you to terminate the charger connection and make it offline.

API Usage¶

See Token Management API for more information on how to create and use the access token.

Force Terminate Connection¶

Prepare Request Body¶

To prepare a request body, perform the following steps.

  1. Set charger ID to the request path parameter chargerId.
  2. Set Content-Type header as application/json as described in Force Termination API Reference.

Example Request¶

Note

Use the server URL applicable to your region. See API Reference for available server URLs applicable to your region.

export ACCESS_TOKEN = <YOUR_ACCESS_TOKEN>

export CHARGER_ID = <YOUR_CHARGER_ID>

curl --location --request PUT 'https://api.eu.depot.emobility.io/v1/chargerControl/$CHARGER_ID/forceTerminateConnection' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer $ACCESS_TOKEN'

Response Body¶

Successful response returns 200 HTTP status code with response body as Success schema. For more information, see Force Termination API Reference.

Example Response¶

{
  "code": 200,
  "message": "Charger Accepted."
}