Member
Get a list of members 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/Member/MemberReplication
<b>Function-style access: </b>/odata/v1/Member/MemberReplication()
get/odata/v1/Member/MemberReplication()
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
Example response
{
"@odata.context": "https://localhost:7051/odata/v1/$metadata#DDF.Core.Entities.Member",
"value": [
{
"MemberKey": "12345",
"ModificationTimestamp": "\"2021-01-01T12:00:00.000Z\""
}
]
}