POST api/tenancy/{id}/updateadditionalservice/{additionalServiceId}
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 |
| additionalServiceId | string |
None. |
Body Parameters
The service data contract value supplied with the request.
Collection of SetAdditionalServiceDataContract| Name | Description | Type | Additional information |
|---|---|---|---|
| Name |
The name value. |
string |
None. |
| Description |
The description value. |
string |
None. |
| ProviderGroupId |
The unique identifier of the related provider group resource. |
integer |
None. |
| PropertyServiceType |
The property service type value. |
EnumDataContract |
None. |
| IsPaidByOwner |
Indicates whether this item is paid by owner. |
boolean |
None. |
| Notified |
Indicates whether notified is true. |
boolean |
None. |
| AdditionalServiceType |
The additional service type classification. |
AdditionalServiceType |
None. |
| Readings |
The collection of readings. |
Dictionary of string [key] and date [value] |
None. |
| Id |
The unique identifier of this resource. |
integer |
None. |
Request Formats
application/x-www-form-urlencoded
Sample not available.
application/json, text/json
[
{
"Name": "sample string 1",
"Description": "sample string 2",
"ProviderGroupId": 1,
"PropertyServiceType": {
"Id": 1,
"Name": "sample string 2",
"SystemName": "sample string 3"
},
"IsPaidByOwner": true,
"Notified": true,
"AdditionalServiceType": 0,
"Readings": {
"sample string 1": "2026-07-25T12:07:58.4300985Z",
"sample string 3": "2026-07-25T12:07:58.4300985Z"
},
"Id": 5
},
{
"Name": "sample string 1",
"Description": "sample string 2",
"ProviderGroupId": 1,
"PropertyServiceType": {
"Id": 1,
"Name": "sample string 2",
"SystemName": "sample string 3"
},
"IsPaidByOwner": true,
"Notified": true,
"AdditionalServiceType": 0,
"Readings": {
"sample string 1": "2026-07-25T12:07:58.4300985Z",
"sample string 3": "2026-07-25T12:07:58.4300985Z"
},
"Id": 5
}
]
Response Information
Resource Description
The response returned after the operation completes.
IHttpActionResultNone.
Response Formats
application/json, text/json
Sample not available.