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 Dezrez.Core.DataContracts.External.Api.SpecialArrangements.Query.SpecialArrangementDataContract
NameDescriptionTypeAdditional information
Text

string

None.

SpecialArrangementType

Dezrez.Core.DataContracts.External.Api.System.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
  }
]