GET api/property/{id}/propertyadditionalservices

Gets a list of AdditionalServices added to the property or any of it's tenancies

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

SetAdditionalServiceDataContract
NameDescriptionTypeAdditional information
Name

string

None.

Description

string

None.

ProviderGroupId

integer

None.

PropertyServiceType

EnumDataContract

None.

IsPaidByOwner

boolean

None.

Notified

boolean

None.

AdditionalServiceType

AdditionalServiceType

None.

Readings

Dictionary of string [key] and date [value]

None.

Id

integer

None.

Request Formats

application/x-www-form-urlencoded

Sample:

Sample not available.

application/json, text/json

Sample:
{
  "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": "2025-06-14T20:59:48.8773184Z",
    "sample string 3": "2025-06-14T20:59:48.8773184Z"
  },
  "Id": 5
}

Response Information

Resource Description

AdditionalServiceDataContract
NameDescriptionTypeAdditional information
Name

string

None.

Description

string

None.

ProviderGroupId

integer

None.

ProviderGroupName

string

None.

PropertyServiceType

EnumDataContract

None.

IsPaidByOwner

boolean

None.

Notified

boolean

None.

AdditionalServiceType

AdditionalServiceType

None.

CreatedDate

date

None.

Readings

Collection of ReadingDataContract

None.

Id

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "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": "2025-06-14T20:59:48.8773184Z",
  "Readings": [
    {
      "Reading": "sample string 1",
      "ReadingDate": "2025-06-14T20:59:48.8773184Z",
      "CreatedDate": "2025-06-14T20:59:48.8773184Z",
      "Id": 3
    },
    {
      "Reading": "sample string 1",
      "ReadingDate": "2025-06-14T20:59:48.8773184Z",
      "CreatedDate": "2025-06-14T20:59:48.8773184Z",
      "Id": 3
    }
  ],
  "Id": 8
}