How can I get build time stamp of the latest build from Jenkins? I want to insert this value in the Email subject in post build actions.
You can use the Jenkins object to fetch the start time directly
Jenkins.getInstance().getItemByFullName().getBuildByNumber().getTime()
also answered it here: https://stackoverflow.com/a/63074829/1968948