Search meter dispatches

Time Status User Agent
Make a request to see history.

URL Expired

The URL for this request expired after 30 days.

Search meter dispatch request input

Search parameters for the search dispatches endpoints

200 A list of meter dispatches that match the search input

Response structure

Timeslot structure

400 Request could not be parsed or is invalid

401 Unauthorized

403 No access to this resource

404 Resource not found

5XX Unexpected error

Example Request

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

### Example Response
```json
{   
  "next_page_token": "242c3e24-43e6-4ad7-88b3-666cda21582b",  
  "results": [ 
    {  
      "meter_id": "046b6c7f-0b8a-43b9-b35d-6489e6daee91",  
      "timeslots": [  
        {  
          "meter_event_id": "f4cfced0-16f4-4fb7-b72e-5ff939ae541e",  
          "start_time": "2023-02-21T00:00:00.000Z",  
          "end_time": "2023-02-21T01:00:00.000Z",  
          "energy_kw": 80,  
          "nomination_kw": 100,  
          "cancelled": false,  
          "programs": [  
            "CCA"  
          ],  
          "priority": 1,  
          "is_voluntary": false,  
          "performance_compensation_cap": "up-to-site-load",  
          "dispatch_event_types": [  
            "day-ahead",  
            "capacity-test"  
          ]  
        },  
        {  
          "meter_event_id": "a6d4bbde-36ee-401f-92b8-c58aa17aa71d",  
          "start_time": "2023-02-21T00:00:00.000Z",  
          "end_time": "2023-02-21T04:00:00.000Z",  
          "energy_kw": null,  
          "nomination_kw": 100,  
          "cancelled": false,  
          "programs": [  
            "ELRP"  
          ],  
          "priority": 3,  
          "is_voluntary": true,  
          "performance_compensation_cap": "grid-exports-allowed",  
          "dispatch_event_types": [  
            "standard"  
          ]  
        }  
      ]  
    }  
  ]  
}