How to create a list of patients registered today?

I need to create a list of patients registered daily on the system before they have any encounters. is there a way to generate this list?

Thank you.

I can think of doing this with two consecutive REST calls to GET /patient and GET /encounter?patient=, If you’re to do this programmatically.

Patients/Users have a property named dateCreated which could be useful in your case. There surely have better ways to achieve this though.

Thank you for looking into it @gayanw Is there a way to do this using OpenMRS interface? This is required to be done everyday by the receptionist. With no programming background.