POST api/MeterReading

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

ResponseHelper
NameDescriptionTypeAdditional information
data

Object

None.

error

ErrorDef

None.

status

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "status": 1,
  "data": {},
  "error": {
    "errorID": 1,
    "errorType": "sample string 2",
    "errorMessage": "sample string 3",
    "additonalMessage": "sample string 4"
  }
}

application/xml, text/xml

Sample:
<ResponseHelper xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SmartCBS_API.BusinessHelpers">
  <data />
  <error>
    <additonalMessage>sample string 4</additonalMessage>
    <errorID>1</errorID>
    <errorMessage>sample string 3</errorMessage>
    <errorType>sample string 2</errorType>
  </error>
  <status>1</status>
</ResponseHelper>