PATCH
Update meter reading

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

meter_reading_id
string<uuid>
required

Meter reading ID

Body

application/json

Meter period and usage values. The API validates YYYY-MM periods and non-decreasing readings.

Request payload for update meter reading.

period
string | null

Billing period in YYYY-MM format.

Required string length: 7
Pattern: ^\d{4}-\d{2}$
electricity_previous
number<double> | null

Previous electricity meter reading for the billing period.

Required range: x >= 0
electricity_current
number<double> | null

Current electricity meter reading for the billing period.

Required range: x >= 0
water_previous
number<double> | null

Previous water meter reading for the billing period.

Required range: x >= 0
water_current
number<double> | null

Current water meter reading for the billing period.

Required range: x >= 0

Response

Updated meter reading

data
object
required

Endpoint-specific response payload. See the referenced schema for the resource fields.

request_id
string
required

Request correlation identifier returned from X-Request-Id or generated by the API.

meta
object

Optional response metadata such as pagination limits, counts, or export context.