v1

latestOpenAPI 3.0.4MIT2026-08-0417157271.9 KB
Property

Get a list of properties for all destinations

Both methods are valid and return the same result: The path-style is more intuitive and commonly used in RESTful APIs. The function-style follows OData conventions.

<b>Path-style access: </b>/odata/v1/Property/PropertyReplication

<b>Function-style access: </b>/odata/v1/Property/PropertyReplication()

get/odata/v1/Property/PropertyReplication()

Query parameters

$selectstring

Selects which properties to include in the response.

$countboolean

Return, along with the results, the total number of records in the dataset. NOTE: There is a performance cost with this query option.

$filterstring

Filters the results, based on a Boolean condition.

$orderbystring

Sorts the results.

Response

OK

@odata.contextstring nullable

Example response

{
  "@odata.context": "https://localhost:7051/odata/v1/$metadata#DDF.Core.Entities.Property",
  "value": [
    {
      "ListingKey": "12345",
      "ModificationTimestamp": "\"2021-01-01T12:00:00.000Z\""
    }
  ]
}