completedDispatches
All completed device dispatches 12 hours behind, in reverse time order.
Arguments
Returns
[UpsideDispatchType]Possible Errors
Allowed Viewers
Required Permissions
Can access customer queriesCan access third party queries
Can view ev data
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 CompletedDispatches($accountNumber: String!) {
completedDispatches(accountNumber: $accountNumber) {
delta
end
meta {
...UpsideDispatchMetaTypeFragment
}
start
}
}
Variables
{
"accountNumber": "A-F41A8CB7"
}
Response
{
"data": {
"completedDispatches": [
{
"delta": "1.0",
"end": "2022-06-27T16:41:36.034679+00:00",
"meta": UpsideDispatchMetaType,
"start": "2024-11-14T11:32:16.122612+00:00"
}
]
}
}