POST api/v1/ReadingSave
Request Information
URI Parameters
None.
Body Parameters
ReadingInput| Name | Description | Type | Additional information |
|---|---|---|---|
| Mode | string |
None. |
|
| UserID | integer |
None. |
|
| CompID | integer |
None. |
|
| LocID | integer |
None. |
|
| RentID | integer |
None. |
|
| Mon | integer |
None. |
|
| Yr | integer |
None. |
|
| InvTypeID | integer |
None. |
|
| json | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Mode": "sample string 1",
"UserID": 2,
"CompID": 3,
"LocID": 4,
"RentID": 5,
"Mon": 6,
"Yr": 7,
"InvTypeID": 8,
"json": "sample string 9"
}
application/xml, text/xml
Sample:
<ReadingInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Models"> <CompID>3</CompID> <InvTypeID>8</InvTypeID> <LocID>4</LocID> <Mode>sample string 1</Mode> <Mon>6</Mon> <RentID>5</RentID> <UserID>2</UserID> <Yr>7</Yr> <json>sample string 9</json> </ReadingInput>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |