createElectricityMeterReadings
Create electricity meter reading(s) with the given value(s) for the given MaLo.
This field requires the Authorization header to be set.
Arguments
Input fields for creating meter readings for a customer.
Examples
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 CreateElectricityMeterReadings($input: ReadingsInput!) {
createElectricityMeterReadings(input: $input) {
numberOfReadingsCreated
readingDate
}
}
Variables
{
"input": ReadingsInput
}
Response
{
"data": {
"createElectricityMeterReadings": {
"numberOfReadingsCreated": 21,
"readingDate": "2000-03-28"
}
}
}