Skip to main content

Get meter value history of the charger

x-ms-visibility: "important"

This method returns the meter value history of the charger

Path Parameters
    chargerId string required

    This is globally an unique ID for the charger

Request Body
    startTime date-time nullable
    stopTime date-time nullable
    chargerIDs string[]
    unit string
    latest boolean nullable
Responses

meter values from the charger on selected interval. Max 10000 meter values are included


Schema
    results object[]
  • Array [
  • chargerId string
    socketId int32
    transactionRelatedTo int32
    timeStamp date-time
    value string
    phase string
    unit string
    context string
    type string
    evseTransactionRelatedTo string
  • ]
POST /charger/measurements/:chargerId

Authorization

name: codetype: apiKeyin: query

Request

Base URL
https://api.emabler.net/api
apiKey — auth required
code in query
customerKey — auth required
clientId in query
chargerId — path required
Body
{
"startTime": "2025-03-31T07:22:20.708Z",
"stopTime": "2025-03-31T07:22:20.708Z",
"chargerIDs": [
"string"
],
"unit": "string",
"latest": true
}
curl / cURL
curl -L -X POST 'https://api.emabler.net/api/charger/measurements/:chargerId' \
-H 'Content-Type: text/plain' \
-H 'Accept: text/plain' \
--data-raw '{
"startTime": "2025-03-31T07:22:20.708Z",
"stopTime": "2025-03-31T07:22:20.708Z",
"chargerIDs": [
"string"
],
"unit": "string",
"latest": true
}'