Retrieve charging session information
Learn how to activate a connector at the charging point
This API is to start a charging session with the selected connector at the charging point.
Example request
Request header
To be defined by the vendor.
Request query
Query | Type | Description |
---|---|---|
|
| The ID of the session. |
Example response
{
"sessionId": "61",
"status": "completed",
"completedAmount": 0.3,
"completedUsage": 1.24,
"completedDuration": 166,
"billingRate": "RM0.10/min",
"sessionStart": "2022-01-01T00:00:11.246Z",
"sessionEnd": "2022-01-01T00:02:57.592Z",
"createdAt": "2022-01-01T00:00:00.000Z"
"chargingStationId": "1"
"chargingPointId": "1",
"connectorId": "2"
}
Variable | Type | Description |
---|---|---|
sessionId |
| The charging session ID created on the vendor's side. |
status |
| The current status of the charging session. |
completedAmount |
| The total amount to be charged by us to the customer in |
completedUsage |
| The total charging usage for the session in |
completedDuration |
| The total duration of the charging session in |
billingRate |
| The rate of the charging session. Eg. |
sessionStart |
| The timestamp the charging session began. |
sessionEnd |
| The timestamp the charging session ended. |
createdAt |
| The timestamp the charging session request was created. |
chargingStationId |
| The ID of the charging station. |
chargingPointId |
| The ID of the charging point. |
connectorId |
| The ID of the connector. |
Updated 16 days ago