Community Tip - Visit the PTCooler (the community lounge) to get to know your fellow community members and check out some of Dale's Friday Humor posts! X
Hi,
Is it possible to filter or sort values of QueryPropertyHistory like it should return only >50 or <100 values?
How can I achieve this?
Thanks,
Shalini V.
Solved! Go to Solution.
You can use the query parameter in the service:
var result = me.QueryPropertyHistory({
oldestFirst: undefined /* BOOLEAN */,
maxItems: undefined /* NUMBER */,
endDate: undefined /* DATETIME */,
query: undefined /* QUERY */,
startDate: undefined /* DATETIME */
});
Using a json object in the query parameter. Details:
You can use the query parameter in the service:
var result = me.QueryPropertyHistory({
oldestFirst: undefined /* BOOLEAN */,
maxItems: undefined /* NUMBER */,
endDate: undefined /* DATETIME */,
query: undefined /* QUERY */,
startDate: undefined /* DATETIME */
});
Using a json object in the query parameter. Details:
If the response posted by @posipova answered your question, please mark it as the Accepted Solution for the benefit of others with the same question.
Regards.
--Sharon