v13.60.0
22 days ago by Kostas Emmanouilidis
➕ Additions | ⚠️ End of Support |📄 Documentation Updates | ✏️ Modifications
➕ Additions
GET /v2/recommendations/weekly
GET /v2/recommendations/monthly
⚠️ End of Support
- GET /v2/recommendations has been moved to the
Deprecated
section of the API reference. - CE-API Deprecation Calendar has been updated.
📄 Documentation Updates
- Recommendations 2.0 has been moved from the
Upcoming Changes
section to theRecommendations
section.
✏️ Modifications
The Energy Measurement endpoints
- GET /energy-measurements/{metricType}/{feedType}/{interval}/{startDate}/{endDate}
- GET /energy-measurements/{metricType}/{feedType}/weeks/{year}/{quarter}
- GET /energy-measurements/{metricType}/{feedType}/months/{startMonth}/{endMonth}
now omit the fields of measured
and cost_measured
when data are not available. New examples have been added to the API reference:
{
"status": "ok",
"data": [
{
"timestamp": "2022-12-15T00:00:00+02:00"
},
{
"timestamp": "2022-12-16T00:00:00+02:00"
},
{
"timestamp": "2022-12-17T00:00:00+02:00",
"measured": "84235",
"cost_measured": "16.7845"
},
{
"timestamp": "2022-12-19T00:00:00+02:00",
"measured": "67225",
"cost_measured": "14.7895"
}
]
}