POST api/tenancy/{id}/updateadditionalservicereading/{readingId}
Create/Update additional service on tenancy Processes this tenancy API request. The parameter and response sections describe the data exchanged with the API.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The unique identifier of the requested resource. |
integer |
Required |
| readingId | string |
None. |
Body Parameters
The reading data contract supplied with the request.
ReadingDataContract| Name | Description | Type | Additional information |
|---|---|---|---|
| Reading |
The reading value. |
string |
None. |
| ReadingDate |
The reading date, expressed as a date and time. |
date |
None. |
| CreatedDate |
The created date, expressed as a date and time. |
date |
None. |
| Id |
The unique identifier of this resource. |
integer |
None. |
Request Formats
application/x-www-form-urlencoded
Sample:
Sample not available.
application/json, text/json
Sample:
{
"Reading": "sample string 1",
"ReadingDate": "2026-08-05T01:30:40.2400558Z",
"CreatedDate": "2026-08-05T01:30:40.2400558Z",
"Id": 3
}
Response Information
Resource Description
The response returned after the operation completes.
IHttpActionResultNone.
Response Formats
application/json, text/json
Sample:
Sample not available.