Search group dispatches

Time Status User Agent
Make a request to see history.

URL Expired

The URL for this request expired after 30 days.

Search group dispatch request input

Search parameters for the search dispatches endpoints

Request Parameters

Responses

200

Response Structure

Result Structure

Timeslot Structure

Example Request

curl --request POST \
     --url https://api.staging.leap.energy/v2/dispatch/group/search \
     --header 'accept: application/json' \
     --header 'content-type: application/json' \
     --data '
{
  "market_group_ids": [],
  "market_group_event_ids": [],
  "exclude_real_time_events": true,
  "exclude_voluntary_events": false
}
'

Example Response

{
  "next_page_token": "a946dfb9-5dc9-41f4-b9f2-4e5ac8fb5447",
  "results": [
    {
      "market_group_id": "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
      "meter_ids": [
        "a946dfb9-5dc9-41f4-b9f2-4e5ac8fb5447",
        "74a2444d-7b49-45d1-93f7-dd8c24b33130"
      ],
      "timeslots": [
        {
          "market_group_event_id": "904751e8-c0df-4d69-8a4f-9e7cebef1f84",
          "start_time": "2023-01-23T01:00:00.000Z",
          "end_time": "2023-01-23T02:00:00.000Z",
          "energy_kw": 95,
          "nomination_kw": 100,
          "cancelled": false,
          "programs": [
            "CCA"
          ],
          "priority": 2,
          "is_voluntary": false,
          "performance_compensation_cap": "up-to-site-load",
          "dispatch_event_types": [
            "day-ahead"
          ]
        },
        {
          "market_group_event_id": "3d1394e4-3f4a-4ee0-bd86-bf653ba29537",
          "start_time": "2023-01-23T02:00:00.000Z",
          "end_time": "2023-01-23T03:00:00.000Z",
          "energy_kw": 115,
          "nomination_kw": 120,
          "cancelled": false,
          "programs": [
            "CCA"
          ],
          "priority": 2,
          "is_voluntary": false,
          "performance_compensation_cap": "up-to-site-load",
          "dispatch_event_types": [
            "day-ahead"
          ]
        }
      ]
    }
  ]
}