GET 17.0/app/properties/{id}/applicablestatuses

Description

Retrieves a list of Statuses a Property can change status to

URI Parameters

Name Description Type Additional information
id

The ID of the Property to retrieve a list of statuses that it can be changed to

integer

Required

None.

None.

a list of ID Description Pairs containing statuses the Property can change to

Collection of IDDescriptionPair
Name Description Type Additional information
ID

integer

None.

Description

string

None.

application/json, text/json

Sample:
[
  {
    "id": 1,
    "description": "sample string 2"
  },
  {
    "id": 1,
    "description": "sample string 2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfIDDescriptionPair xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <IDDescriptionPair>
    <ID>1</ID>
    <Description>sample string 2</Description>
  </IDDescriptionPair>
  <IDDescriptionPair>
    <ID>1</ID>
    <Description>sample string 2</Description>
  </IDDescriptionPair>
</ArrayOfIDDescriptionPair>