createElectricityMeterAccumulationReading
Create an electricity meter accumulation reading with the given value for the given meter. This is intended to be used for non-communicating smart meters that need their accumulation readings forwarded to their smart data service.
This field requires the Authorization header to be set.
Arguments
Returns
CreateMeterReadingOutputTypePossible Errors
Allowed Viewers
Required Permissions
Can submit meter readingsQuery 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 CreateElectricityMeterAccumulationReading(
$mpan: String!,
$readAt: Date!,
$readingValueInKwh: Int!,
$serialNumber: String!
) {
createElectricityMeterAccumulationReading(
mpan: $mpan,
readAt: $readAt,
readingValueInKwh: $readingValueInKwh,
serialNumber: $serialNumber
) {
readingErrors {
...SerializerFieldErrorsTypeFragment
}
}
}
Variables
{
"mpan": "how-year-someone-success-position",
"readAt": "1992-04-25",
"readingValueInKwh": 46,
"serialNumber": "like-various-need-travel-local"
}
Response
{
"data": {
"createElectricityMeterAccumulationReading": {
"readingErrors": [SerializerFieldErrorsType]
}
}
}