This endpoint is used to transmit a load forecast for a subscription. Values can only be submitted until 9am local time of the previous day of the forecast start date. Data points must be strictly consecutive and can only be provided for full days at a time (local time of the subscription).
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Load forecast input
Reference point for the load forecast
subscription "subscription"
Required subscription ID when scope is 'subscription'
"sub_123456789"
Time resolution of the load forecast data points
15min "15min"
Unit of measurement for the forecast values
KW "KW"
Array of load forecast data points. Must be strictly consecutive with exactly 15-minute intervals and without overlaps or gaps and can only contain one data point per 15-minute interval.
[
{
"start": "2025-03-31T22:00:00.000Z",
"value": 0.2
},
{
"start": "2025-03-31T22:15:00.000Z",
"value": 0.22
}
]