GET api/property/{id}/specialarrangements

Get a list of special arrangements for a property

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

The Id of the property

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of SpecialArrangementDataContract
NameDescriptionTypeAdditional information
Text

string

None.

SpecialArrangementType

EnumDataContract

None.

ApplicableToGroupIds

Collection of integer

None.

Id

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Text": "sample string 1",
    "SpecialArrangementType": {
      "Id": 1,
      "Name": "sample string 2",
      "SystemName": "sample string 3"
    },
    "ApplicableToGroupIds": [
      1,
      2
    ],
    "Id": 2
  },
  {
    "Text": "sample string 1",
    "SpecialArrangementType": {
      "Id": 1,
      "Name": "sample string 2",
      "SystemName": "sample string 3"
    },
    "ApplicableToGroupIds": [
      1,
      2
    ],
    "Id": 2
  }
]