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

Description

Retrieves the linked properties for the passed id

URI Parameters

Name Description Type Additional information
id

Id of the property to retrieve links for

integer

Required

None.

None.

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>