GET api/property/{id}/propertyadditionalservices
Gets a list of AdditionalServices added to the property or any of it's tenancies Processes this property 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 |
Body Parameters
The set additional service data contract supplied with the request.
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-23T08:23:25.5462334Z",
"sample string 3": "2026-07-23T08:23:25.5462334Z"
},
"Id": 5
}
Response Information
Resource Description
The response returned after the operation completes.
AdditionalServiceDataContract| 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. |
| ProviderGroupName |
The provider group name value. |
string |
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. |
| CreatedDate |
The created date, expressed as a date and time. |
date |
None. |
| Readings |
The collection of readings. |
Collection of ReadingDataContract |
None. |
| Id |
The unique identifier of this resource. |
integer |
None. |
Response Formats
application/json, text/json
{
"Name": "sample string 1",
"Description": "sample string 2",
"ProviderGroupId": 3,
"ProviderGroupName": "sample string 4",
"PropertyServiceType": {
"Id": 1,
"Name": "sample string 2",
"SystemName": "sample string 3"
},
"IsPaidByOwner": true,
"Notified": true,
"AdditionalServiceType": 0,
"CreatedDate": "2026-07-23T08:23:25.5462334Z",
"Readings": [
{
"Reading": "sample string 1",
"ReadingDate": "2026-07-23T08:23:25.5462334Z",
"CreatedDate": "2026-07-23T08:23:25.5462334Z",
"Id": 3
},
{
"Reading": "sample string 1",
"ReadingDate": "2026-07-23T08:23:25.5462334Z",
"CreatedDate": "2026-07-23T08:23:25.5462334Z",
"Id": 3
}
],
"Id": 8
}