I am looking for SPL, that can give me list of all the knowledge Objects, created in last 24 hours, in search app.
I looked at the below rest SPL, but i did not see creation time.
| rest /servicesNS/-/search/directory
Most KOs do not have a creation time in their REST output. There is update_time, but it is rarely anything other than zero.
You can try looking in _audit and the access logs to creations, but I suspect you'll be less than successful.
You could do regular commits to a source management system and let it find the new objects for you, but that likely has its own limitations.
Thanks richgalloway for the reply.
I will check _audit and see if that helps.
I will reply back with my findings.