Thank you for posting to the community.
If you are using an on-prem controller, you can query the application table in the controller database.
You can access the database by the following command:
"<controller_home>/bin/controller.sh login-db"
A query like below would give results with applications which were created after a specified time.
"select id, name, from_unixtime(created_on/1000) from application where created_on >= {Unix timestamp in milliseconds};"
If you are using SaaS, you may use the "Retrieve All Business Applications" API.
You can get the list of applications that are alive on a specified date.
By getting the list for yesterday and today and comparing them, you can get applications which were added today.
*Time-range-type may not be effective for certain environments depending on the setting. In that case, you may request the API daily and compare the results on daily basis to get new applications added on a certain day.
In addition, although it's not a list, you can see each application's created date from UI.
Application -> Actions -> Edit Application Properties
Attaching snippet for reference.
Best Regards,
Hiroki
