readInventory
Triggers an asynchronous request through the DCC adapter to read the Smart Metering Inventory, for either a given device EUI64 or MPxN.
Returns a request reference that can be used to track the status of the request.
Arguments
Input field for a read inventory via device EUI64 or MPAN/MPRN.
Returns
ReadInventoryTriggers an asynchronous request through the DCC adapter to read the Smart Metering Inventory, for either a given device EUI64 or MPxN.
Returns a request reference that can be used to track the status of the request.
Possible Errors
Allowed Viewers
Required Permissions
Can commission smart metersQuery Complexity
1Examples
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.
mutation ReadInventory($input: ReadInventoryInput!) {
readInventory(input: $input) {
requestReference
}
}
Variables
{
"input": ReadInventoryInput
}
Response
{
"data": {
"readInventory": {
"requestReference": "water-produce-military-sport-official"
}
}
}