v1
latestOpenAPI 3.0.42026-07-233182951.4 MBRestoration Zone Demand Restored Submissions (RZDR)
This endpoint provides data about the end of system restoration events. It returns the restored demand value for each restoration zone at the last submission time of each event. The number of events to return is determined by the count parameter.
The data can be filtered by submission date/time, region, and GSP Group ID (when received by NESO).
All DateTimes should be expressed as defined within <a href="https://datatracker.ietf.org/doc/html/rfc3339#section-5.6" target="_blank">RFC 3339</a>.
Some examples of parameter combinations are shown below.
Filtering latest 3 events:
/demand/by-restoration-zone/restored/submissions?count=3
Filtering latest 3 events before a given submission time:
/demand/by-restoration-zone/restored/submissions?before=2025-10-01T00:00Z&count=3
Filtering latest 10 events for a given region:
/demand/by-restoration-zone/restored/submissions?region=North West&count=10
Query parameters
The number of system restoration events to return.
If specified, filters events to those with a submission time before or at the specified date and time. If omitted, latest events are returned.
The region to filter by.
The GSP Group ID to filter by.
Response data format. Use json/xml to include metadata.
Response
Data retrieved
Example response
{
"data": [
{
"dataset": "RZDR",
"submissionDateTime": "2025-01-01T07:01:07",
"publishTime": "2025-01-01T00:00:10",
"region": "North Scotland",
"gspGroupId": "_A",
"restoredDemand": 1234
}
],
"metadata": {
"datasets": [
"DATASET"
]
}
}