plannedDispatches
All planned device dispatches 24 hours ahead, (usually) in time order.
Deprecation
The 'plannedDispatches' field is deprecated.Please use 'flexPlannedDispatches' instead.
- Marked as deprecated on 2025-05-27.
- Scheduled for removal on or after 2026-01-16.
You can read more about this deprecation on:
https://announcements.kraken.tech/announcements/public/604/
Arguments
Returns
[UpsideDispatchType]Possible Errors
Allowed Viewers
Rate Limits
| Key | Steps |
|---|---|
user |
['300/h'] |
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 PlannedDispatches($accountNumber: String!) {
plannedDispatches(accountNumber: $accountNumber) {
delta
end
meta {
...UpsideDispatchMetaTypeFragment
}
start
}
}
Variables
{
"accountNumber": "A-05781C8B"
}
Response
{
"data": {
"plannedDispatches": [
{
"delta": "1.0",
"end": "1973-02-10T22:36:10.431000+00:00",
"meta": UpsideDispatchMetaType,
"start": "1971-12-22T18:12:32.350264+00:00"
}
]
}
}