post
https://{sitename}.mvpplant.com/ODataApi/v1/MeterReadings
Recent Requests
Log in to see full request history
| Time | Status | User Agent | |
|---|---|---|---|
Retrieving recent requests… | |||
Loading…
POST Meter Readings
Create a meter reading record.
POST /ODataApi/v1/MeterReadingsEndpoint
https://{site}.mvpplant.com/ODataApi/v1/MeterReadingsReplace {site} with your MVP One site name.
Request body fields
| Field | Data type | Required | Description |
|---|---|---|---|
MeterID | String | Yes | Identifier of the meter receiving the reading. |
Description | String | No | Description of the meter reading. |
MeterReading | Decimal | No | Meter reading value. |
Unit | String | No | Unit associated with the meter reading. |
ReadingDate | DateTime | No | Date and time the meter reading was recorded. |
Event | String | No | Event associated with the meter reading. |
Key: MeterID
Example request
{
"MeterID": "METER-1001",
"Description": "Monthly operating-hours reading",
"MeterReading": 1250.5,
"Unit": "Hours",
"ReadingDate": "2026-06-22T10:30:00",
"Event": "Reading"
}Example endpoint
POST https://company.mvpplant.com/ODataApi/v1/MeterReadingsResponse
The response type is not specified in the available endpoint metadata.
Notes
- Include
MeterIDin every request. - Send only the fields you need to create the meter reading record.
- Use the date and time format expected by your MVP One environment for
ReadingDate.
