- Retrieve a status log for a boundary meter
List boundary meter makes
Retrieve a boundary meter make
List boundary meter models
Retrieve a boundary meter model
List boundary meters
Retrieve a boundary meter
List status logs for a boundary meter
BoundaryMeter
BoundaryMeterMake
BoundaryMeterModel
BoundaryMeterStatusLog
Retrieve a status log for...
A boundary meter status log is uniquely identified by the combination of boundary meter ID and the time it was sampled at.
Security
oauth2(Required scopes: boundary_meter:read)
- Mock serverhttps://developers.ev.energy/_mock/ev.energy-api-v2/boundary_meters/{boundary_meter_id}/status_logs/{sampled_at}
- Live API for both production and sandbox requests.https://api.ev.energy/v2/boundary_meters/{boundary_meter_id}/status_logs/{sampled_at}
- Staging server for internal testing only.https://api-staging.ev.energy/v2/boundary_meters/{boundary_meter_id}/status_logs/{sampled_at}
curl -i -X GET \
'https://developers.ev.energy/_mock/ev.energy-api-v2/boundary_meters/{boundary_meter_id}/status_logs/2024-04-17T09:39:45.984584Z?expand=boundary_meter' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'EvEnergy-Version: 2'Retrieve a single status log for a specific boundary meter.
Headers
Indicates the version of the API that generated this response. If EvEnergy-Version was not specified in the request, this will be your OAuth application's default version.
Value:2
The maximum number of requests that can be made to this endpoint per hour. Defaults to 1000 but may vary per client.
Default:1000
The number of requests remaining until this client's rate limit is reached.
Default:999
Example:"https://api.ev.energy/v2/boundary_meters/bmet01J5DCXX8DMJDJYGVR1DW4T001/status_logs/2024-04-17T09:39:45.984584Z/"
One of:
A resource that represents a single, physical boundary meter.
Instantaneous power at the meter in W. Positive = import, negative = export.
Example:1500
Response
{ "url": "https://api.ev.energy/v2/boundary_meters/bmet01J5DCXX8DMJDJYGVR1DW4T001/status_logs/2024-04-17T09:39:45.984584Z/", "sampled_at": "2019-08-24T14:15:22Z", "boundary_meter": { "id": "bmet01J5DCXX8DMJDJYGVR1DW4T001", "url": "https://api.ev.energy/v2/boundary_meters/bmet01J5DCXX8DMJDJYGVR1DW4T001", "model": "https://api.ev.energy/v2/boundary_meter_models/bmmo01J5DCXX8DMJDJYGVR1DW4D001", "created_at": "2024-01-10T12:00:00Z", "latest_status_log": { … } }, "power_watts": 1500, "status": "IMPORTING" }