flexPlannedDispatches
All planned device dispatches in time order.
Arguments
The SmartFlex device ID to get the planned dispatches for.
Returns
[SmartFlexDispatch]Possible Errors
Allowed Viewers
Required Permissions
Can access customer queriesCan view smartflex data
Rate Limits
| Key | Steps |
|---|---|
user |
['5/m'] |
Query Complexity
3Examples
The example data in the variables and responses below are autogenerated values designed to resemble real inputs. They do not represent actual customer data, and in some cases may require additional validation.
query FlexPlannedDispatches($deviceId: String!) {
flexPlannedDispatches(deviceId: $deviceId) {
end
energyAddedKwh
start
type
}
}
Variables
{
"deviceId": "89273852"
}
Response
{
"data": {
"flexPlannedDispatches": [
{
"end": "1993-11-29T15:14:29.353767+00:00",
"energyAddedKwh": "1.0",
"start": "1990-02-05T06:52:39.956106+00:00",
"type": "SMART"
}
]
}
}