GET api/property/{id}/specialarrangements
Get a list of special arrangements for a property 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 Id of the property |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
The response returned after the operation completes.
Collection of SpecialArrangementDataContract| Name | Description | Type | Additional information |
|---|---|---|---|
| Text |
The text value. |
string |
None. |
| SpecialArrangementType |
The special arrangement type value. |
EnumDataContract |
None. |
| ApplicableToGroupIds |
The unique identifiers of the related applicable to group resources. |
Collection of integer |
None. |
| Id |
The unique identifier of this resource. |
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
}
]